This macro gives an example for changing text button labels anytime the Start or Pause buttons are clicked.
To run it do either:
private:
public:
};
void MyMainFrame::ChangeStartLabel()
{
if (!start) {
fStart->SetText("&Stop");
} else {
fStart->SetText("&Start");
}
}
void MyMainFrame::ChangePauseLabel()
{
} else {
}
}
{
fStart->Connect("Clicked()", "MyMainFrame", this, "ChangeStartLabel()");
3, 2, 2, 2));
fStart->SetToolTipText("Click to toggle the button label (Start/Stop)");
fPause->Connect(
"Clicked()",
"MyMainFrame",
this,
"ChangePauseLabel()");
fPause->SetToolTipText(
"Click to toggle the button label (Pause/Resume)");
3, 2, 2, 2));
SetWindowName("Change Labels");
Resize(GetDefaultSize());
MapWindow();
}
MyMainFrame::~MyMainFrame()
{
Cleanup();
}
{
}
#define ClassDef(name, id)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize MapSubwindows
The base class for composite widgets (menu bars, list boxes, etc.).
This class describes layout hints used by the layout classes.
Defines top level windows that interact with the system Window Manager.
Yield an action as soon as it is clicked.
ROOT GUI Window base class.
- Author
- Ilka Antcheva 1/12/2006
Definition in file buttonChangelabel.C.