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