#include <GuiButton.h>
Inheritance diagram for GuiTextButton:

Public Member Functions | |
| GuiTextButton (const TGWindow &p, const char *label) | |
| virtual | ~GuiTextButton () |
Protected Member Functions | |
| void | Pressed () |
| void | Released () |
| void | Clicked () |
|
||||||||||||
|
Definition at line 66 of file GuiButton.h. References GuiBase::SetLayoutHints(). 00067 : TGTextButton(&p,label)
00068 {
00069 // SetLayoutHints(kLHintsExpandX|kLHintsExpandY);
00070 SetLayoutHints(0);
00071 }
|
|
|
Definition at line 72 of file GuiButton.h. 00072 {}
|
|
|
Definition at line 79 of file GuiButton.h. References GuiButtonBase::clicked. 00079 { this->TGButton::Clicked(); clicked(); }
|
|
|
Definition at line 77 of file GuiButton.h. References GuiButtonBase::pressed. 00077 { this->TGButton::Pressed(); pressed(); }
|
|
|
Definition at line 78 of file GuiButton.h. References GuiButtonBase::released. 00078 { this->TGButton::Released(); released(); }
|
1.3.9.1