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

Public Member Functions | |
| GuiCheckButton (const TGWindow &p, const char *label) | |
| virtual | ~GuiCheckButton () |
Protected Member Functions | |
| void | Pressed () |
| void | Released () |
| void | Clicked () |
|
||||||||||||
|
Definition at line 86 of file GuiButton.h. References GuiBase::SetLayoutHints(). 00087 : TGCheckButton(&p,label)
00088 {
00089 // SetLayoutHints(kLHintsExpandX|kLHintsExpandY);
00090 SetLayoutHints(0);
00091 }
|
|
|
Definition at line 92 of file GuiButton.h. 00092 {}
|
|
|
Definition at line 99 of file GuiButton.h. References GuiButtonBase::clicked. 00099 { this->TGButton::Clicked(); clicked(); }
|
|
|
Definition at line 97 of file GuiButton.h. References GuiButtonBase::pressed. 00097 { this->TGButton::Pressed(); pressed(); }
|
|
|
Definition at line 98 of file GuiButton.h. References GuiButtonBase::released. 00098 { this->TGButton::Released(); released(); }
|
1.3.9.1