Inheritance diagram for testCanvas1:

Public Member Functions | |
| testCanvas1 (TGMainFrame *mf) | |
| ~testCanvas1 () | |
| const char * | Description () const |
| const char * | PrintTag () const |
| void | Draw (const char *) |
|
|
Definition at line 11 of file test_evdb.cc. References evdb::Printable::AddToListOfPrintables().
00011 : evdb::Canvas(mf) { 00012 evdb::Printable::AddToListOfPrintables(this->PrintTag(),this); 00013 } |
|
|
Definition at line 14 of file test_evdb.cc. References evdb::Printable::RemoveFromListOfPrintables().
00014 {
00015 evdb::Printable::RemoveFromListOfPrintables(this);
00016 }
|
|
|
Give a medium length description of what the view holds to be printed. Examples: "Full view of experiment", "3D View", ... Reimplemented from evdb::Canvas. Definition at line 17 of file test_evdb.cc.
00017 { return "Test Canvas 1"; }
|
|
|
Implements evdb::Canvas. Definition at line 19 of file test_evdb.cc.
00019 { }
|
|
|
Give a short tag which can be included in filename to ID object printed Keep to ~4 characters Reimplemented from evdb::Canvas. Definition at line 18 of file test_evdb.cc.
00018 { return "Test1"; }
|
1.3.5