#include <GuiScrolled.h>
Inheritance diagram for GuiScrolled:

Public Member Functions | |
| GuiScrolled (TGWindow &parent, unsigned int w=10, unsigned int h=10, unsigned int options=kSunkenFrame|kDoubleBorder) | |
| virtual | ~GuiScrolled () |
| virtual void | Add (GuiBase &gb) |
Private Member Functions | |
| GuiScrolled (const GuiScrolled &rhs) | |
| GuiScrolled & | operator= (const GuiScrolled &rhs) |
|
||||||||||||||||||||
|
Definition at line 29 of file GuiScrolled.h. References GuiBase::SetLayoutHints(). 00031 : TGCanvas(&parent,w,h,options)
00032 { this->SetLayoutHints(kLHintsExpandX|kLHintsExpandY); }
|
|
|
Definition at line 33 of file GuiScrolled.h. 00033 {}
|
|
|
|
|
|
Definition at line 34 of file GuiScrolled.h. Referenced by main(), PageDisplay::MakeMCTree(), EVD::MCTreetext(), and TestMCTree::SpawnMCTree(). 00034 {
00035 fChildren.push_back(&gb);
00036 TGFrame* f = dynamic_cast<TGFrame*>(&gb);
00037 if (!f) {std::cerr<<"Midad/Gui/GuiScrolled::Add() whoops\n"; return;}
00038 this->TGCanvas::SetContainer(f);
00039 }
|
|
|
|
1.3.9.1