ROOT logo
// $Id: Text.cxx 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/.

//__________________________________________________________________________
// Text
//
//

#include "Text.h"
#include "Text.c7"

ClassImp(Text);

/**************************************************************************/

void Text::_init()
{
  mFont = 0;

  // Override settings from ZGlass
  bUseDispList = true;
  // Override settings from ZNode
  bUseScale    = true;

  bAlpha     = false;   bBlend     = true;
  bAbsSize   = true;    bCenter    = true;
  bBackPoly  = true;
  bFramePoly = true;
  bFillBack  = false;
  mXBorder   = 0.1;     mYBorder   = 0.1;
  mFGCol.rgba(1,1,1,1); mBGCol.rgba(0,0,0,1);
  mFrameW    = 0.05;
  mFrameCol.gray(0.8);
}

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