ROOT logo
// $Id: ZRlFont.h 2088 2008-11-23 20:26:46Z matevz $

// Copyright (C) 1999-2008, Matevz Tadel. All rights reserved.
// This file is part of GLED, released under GNU General Public License version 2.
// For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/.

#ifndef GledCore_ZRlFont_H
#define GledCore_ZRlFont_H

#include <Glasses/ZRnrModBase.h>
#include <Eye/Ray.h>

class ZRlFont : public ZRnrModBase {
  // 7777 RnrCtrl(RnrBits(0,4,0,0))
  MAC_RNR_FRIENDS(ZRlFont);

private:
  enum PrivRayQN_e  { PRQN_offset = RayNS::RQN_user_0,
		      PRQN_font_change
  };

  void _init();

protected:
  TString	mFontFile;    // X{GE}  7 Filor(-pat=>"*.txf")
  Int_t         mSize;        // X{GST} 7 Value(-range=>[1,512,1])

public:
  ZRlFont(const Text_t* n="ZRlFont", const Text_t* t=0) :
    ZRnrModBase(n,t) { _init(); }

  void SetFontFile(const Text_t* f);

#include "ZRlFont.h7"
  ClassDef(ZRlFont, 1);
}; // endclass ZRlFont


#endif
 ZRlFont.h:1
 ZRlFont.h:2
 ZRlFont.h:3
 ZRlFont.h:4
 ZRlFont.h:5
 ZRlFont.h:6
 ZRlFont.h:7
 ZRlFont.h:8
 ZRlFont.h:9
 ZRlFont.h:10
 ZRlFont.h:11
 ZRlFont.h:12
 ZRlFont.h:13
 ZRlFont.h:14
 ZRlFont.h:15
 ZRlFont.h:16
 ZRlFont.h:17
 ZRlFont.h:18
 ZRlFont.h:19
 ZRlFont.h:20
 ZRlFont.h:21
 ZRlFont.h:22
 ZRlFont.h:23
 ZRlFont.h:24
 ZRlFont.h:25
 ZRlFont.h:26
 ZRlFont.h:27
 ZRlFont.h:28
 ZRlFont.h:29
 ZRlFont.h:30
 ZRlFont.h:31
 ZRlFont.h:32
 ZRlFont.h:33
 ZRlFont.h:34
 ZRlFont.h:35
 ZRlFont.h:36
 ZRlFont.h:37
 ZRlFont.h:38
 ZRlFont.h:39