Revision 23839a6cb5c6ce1890674b83787f024bfdbf0c83 authored by Sergey Linev on 03 March 2015, 16:23:43 UTC, committed by Bertrand Bellenot on 04 March 2015, 08:35:14 UTC
1. Introduce central method where all kind of text drawings
   are handled. At this place decide which kind of rendering -
   plain text, simplify latex or normal MathJax is used
2. Implement correct size adjustment and alignment for
   all kinds of text output (with and without MathJax)
3. Support TMathText class - always MathJax will be used
4. Draw label in TPabeText
5. Avoid concurent calls of JSROOT.AssertPrerequisities

Signed-off-by: Bertrand Bellenot <bertrand.bellenot@cern.ch>
1 parent 3cb3124
Raw File
VType.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/

#ifndef VTYPE_H
#define VTYPE_H

#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cstring>

#define SUCCESS 0
#define FAILURE 1

/***********************************************************************
* C++ の基本型は必ず typedef で別名をつけて使用すること。
*
***********************************************************************/
typedef unsigned char Bool_t;
typedef int Int_t;
typedef short Short_t;
typedef unsigned int Uint_t;
typedef unsigned int Size_t;
typedef unsigned long Flags_t;
typedef long PVoid_t;
typedef double Double_t;
typedef float Float_t;
typedef char Char_t;

#define MIN(a,b) (a>b?b:a)
#define MAX(a,b) (a>b?a:b)

#define MATCH 1
#define UNMATCH 0

#endif // VTYPE_H
back to top