Inheritance diagram for Display:

Public Member Functions | |
| Display (TGWindow &parent, int nrows, int ncols) | |
| virtual | ~Display () |
| GuiMenuBar & | GetMenuBar () |
| GuiTable & | GetMainBox () |
| GuiStatusBar & | GetStatusBar () |
Private Attributes | |
| GuiMenuBar * | fMenuBar |
| GuiTable * | fMainBox |
| GuiStatusBar * | fStatusBar |
|
||||||||||||||||
|
Definition at line 371 of file test-Gui.cxx. References GuiCompositeFrameBase::Add(), fMainBox, fMenuBar, and fStatusBar. 00372 : GuiBox(parent,kVerticalFrame,100,100) { 00373 // Menu Bar 00374 fMenuBar = SigC::manage(new GuiMenuBar(*this)); 00375 this->Add(*fMenuBar); 00376 00377 // Main box 00378 fMainBox = SigC::manage(new GuiTable(*this,nrows,ncols)); 00379 this->Add(*fMainBox); 00380 00381 // Status bar 00382 fStatusBar = SigC::manage(new GuiStatusBar(*this)); 00383 this->Add(*fStatusBar); 00384 }
|
|
|
Definition at line 385 of file test-Gui.cxx. 00385 {}
|
|
|
Definition at line 388 of file test-Gui.cxx. Referenced by MyDisplay::MyDisplay(). 00388 { return *fMainBox; }
|
|
|
Definition at line 387 of file test-Gui.cxx. Referenced by MyDisplay::MyDisplay(). 00387 { return *fMenuBar; }
|
|
|
Definition at line 389 of file test-Gui.cxx. 00389 { return *fStatusBar; }
|
|
|
Definition at line 392 of file test-Gui.cxx. Referenced by Display(). |
|
|
Definition at line 391 of file test-Gui.cxx. Referenced by Display(). |
|
|
Definition at line 393 of file test-Gui.cxx. Referenced by Display(). |
1.3.9.1