TGSimpleTableInterface is a very simple implementation of a TVirtualTableInterface.
This interface provides a TGTable with data from a two dimensional array of doubles in memory. It is mostly meant as an example implementation for a TVirtualTableInterface.
Definition at line 18 of file TGSimpleTableInterface.h.
Public Member Functions | |
TGSimpleTableInterface (Double_t **data, UInt_t nrows=2, UInt_t ncolumns=2) | |
TGSimpleTableInterface constructor. | |
virtual | ~TGSimpleTableInterface () |
TGSimpleTableInterface destructor. | |
const char * | GetColumnHeader (UInt_t column) override |
Return a name for the header at column. | |
UInt_t | GetNColumns () override |
UInt_t | GetNRows () override |
const char * | GetRowHeader (UInt_t row) override |
Return a name for the header at row. | |
Double_t | GetValue (UInt_t row, UInt_t column) override |
Return the value of the double in row,column of the data. | |
const char * | GetValueAsString (UInt_t row, UInt_t column) override |
Return the value of the double in row,column of the data as a string. | |
Public Member Functions inherited from TVirtualTableInterface | |
TVirtualTableInterface () | |
virtual | ~TVirtualTableInterface () |
Private Attributes | |
TString | fBuffer |
Double_t ** | fData |
UInt_t | fNColumns |
UInt_t | fNRows |
#include <TGSimpleTableInterface.h>
TGSimpleTableInterface::TGSimpleTableInterface | ( | Double_t ** | data, |
UInt_t | nrows = 2 , |
||
UInt_t | ncolumns = 2 |
||
) |
TGSimpleTableInterface constructor.
Definition at line 32 of file TGSimpleTableInterface.cxx.
|
virtual |
TGSimpleTableInterface destructor.
Definition at line 41 of file TGSimpleTableInterface.cxx.
|
overridevirtual |
Return a name for the header at column.
Implements TVirtualTableInterface.
Definition at line 84 of file TGSimpleTableInterface.cxx.
|
inlineoverridevirtual |
Implements TVirtualTableInterface.
Definition at line 38 of file TGSimpleTableInterface.h.
|
inlineoverridevirtual |
Implements TVirtualTableInterface.
Definition at line 37 of file TGSimpleTableInterface.h.
|
overridevirtual |
Return a name for the header at row.
Implements TVirtualTableInterface.
Definition at line 75 of file TGSimpleTableInterface.cxx.
Return the value of the double in row,column of the data.
Implements TVirtualTableInterface.
Definition at line 48 of file TGSimpleTableInterface.cxx.
Return the value of the double in row,column of the data as a string.
Implements TVirtualTableInterface.
Definition at line 64 of file TGSimpleTableInterface.cxx.
|
private |
Definition at line 24 of file TGSimpleTableInterface.h.
|
private |
Definition at line 21 of file TGSimpleTableInterface.h.
|
private |
Definition at line 23 of file TGSimpleTableInterface.h.
|
private |
Definition at line 22 of file TGSimpleTableInterface.h.