Inheritance diagram for MyDisplay:

Public Member Functions | |
| MyDisplay (TGWindow &parent) | |
| virtual | ~MyDisplay () |
|
|
Definition at line 401 of file test-Gui.cxx. References GuiTable::Attach(), fill_mydisplay_menu(), Display::GetMainBox(), and Display::GetMenuBar(). 00401 : Display(parent,3,3){ 00402 GuiTable& main_box = this->GetMainBox(); 00403 00404 GuiCanvas* gc = manage(new GuiCanvas(main_box,100,100)); 00405 main_box.Attach(*gc, 1,2, 1,2); 00406 00407 GuiSlider* xslider = manage(new GuiSlider(main_box,kHorizontalFrame)); 00408 main_box.Attach(*xslider, 1,2, 2,3); 00409 00410 GuiSlider* yslider = manage(new GuiSlider(main_box,kVerticalFrame)); 00411 main_box.Attach(*yslider, 2,3, 1,2); 00412 00413 GuiMenuBar& menubar = this->GetMenuBar(); 00414 fill_mydisplay_menu(&menubar); 00415 }
|
|
|
Definition at line 416 of file test-Gui.cxx. 00416 {}
|
1.3.9.1