#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include "TGHtml.h"
Go to the source code of this file.
Defines | |
#define | DFLT_BORDER 0 |
#define | DFLT_CELLSPACING_3D 5 |
#define | DFLT_CELLSPACING_FLAT 0 |
#define | DFLT_CELLPADDING 2 |
#define | DFLT_HSPACE 0 |
#define | DFLT_VSPACE 0 |
#define | SETMAX(A, B) if ((A) < (B)) { (A) = (B); } |
#define | MAX(A, B) ((A) < (B) ? (B) : (A)) |
#define | ColMin(A, B) colMin[(A)-1][(B)-1] |
#define | ColReq(A, B) colMin[(B)-1][(A)-1] |
#define | VAlign_Unknown 0 |
#define | VAlign_Top 1 |
#define | VAlign_Bottom 2 |
#define | VAlign_Center 3 |
#define | VAlign_Baseline 4 |
#define | N (HTML_MAX_COLUMNS+1) |
Referenced by TGHtml::TableDimensions().
Referenced by TGHtml::TableDimensions().
#define DFLT_BORDER 0 |
#define DFLT_CELLPADDING 2 |
Definition at line 41 of file TGHtmlTable.cxx.
Referenced by TGHtml::TableDimensions(), and TGHtmlLayoutContext::TableLayout().
#define DFLT_CELLSPACING_3D 5 |
#define DFLT_CELLSPACING_FLAT 0 |
#define DFLT_HSPACE 0 |
Definition at line 42 of file TGHtmlTable.cxx.
Referenced by TGHtml::TableDimensions(), and TGHtmlLayoutContext::TableLayout().
#define DFLT_VSPACE 0 |
#define N (HTML_MAX_COLUMNS+1) |
Definition at line 46 of file TGHtmlTable.cxx.
Referenced by TGHtml::MinMax(), and TGHtml::TableDimensions().
#define VAlign_Baseline 4 |
Definition at line 1085 of file TGHtmlTable.cxx.
Referenced by TGHtmlMarkupElement::GetVerticalAlignment().
#define VAlign_Bottom 2 |
Definition at line 1083 of file TGHtmlTable.cxx.
Referenced by TGHtmlMarkupElement::GetVerticalAlignment().
#define VAlign_Center 3 |
Definition at line 1084 of file TGHtmlTable.cxx.
Referenced by TGHtmlMarkupElement::GetVerticalAlignment().
#define VAlign_Top 1 |
Definition at line 1082 of file TGHtmlTable.cxx.
Referenced by TGHtmlMarkupElement::GetVerticalAlignment().
#define VAlign_Unknown 0 |
Definition at line 1081 of file TGHtmlTable.cxx.