This macro gives an example of how to create a list box and how to set and use its multiple selection feature.
private:
public:
void DoExit();
void DoSelect();
void HandleButtons();
};
void MyMainFrame::DoSelect()
{
}
void MyMainFrame::DoExit()
{
}
{
char tmp[20];
for (int i = 0; i < 20; ++i) {
fListBox->AddEntry(tmp, i + 1);
}
fListBox->Resize(100, 150);
fCheckMulti->Connect(
"Clicked()",
"MyMainFrame",
this,
"HandleButtons()");
show->SetToolTipText(
"Click here to print the selection you made");
show->Connect(
"Pressed()",
"MyMainFrame",
this,
"PrintSelected()");
exit->Connect(
"Pressed()",
"MyMainFrame",
this,
"DoExit()");
SetWindowName("List Box");
Resize(GetDefaultSize());
MapWindow();
fListBox->Select(1);
}
MyMainFrame::~MyMainFrame()
{
Cleanup();
if (fSelected) {
fSelected->Delete();
delete fSelected;
}
}
void MyMainFrame::HandleButtons()
{
printf(
"HandleButton: id = %d\n",
id);
if (id == 10)
fListBox->SetMultipleSelections(
fCheckMulti->GetState());
}
void MyMainFrame::PrintSelected()
{
fSelected->Clear();
if (fListBox->GetMultipleSelections()) {
Printf(
"Selected entries are:\n");
fListBox->GetSelectedEntries(fSelected);
fSelected->ls();
} else {
Printf(
"Selected entries is: %d\n", fListBox->GetSelected());
}
}
{
}
#define ClassDefOverride(name, id)
R__EXTERN TApplication * gApplication
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 id
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize MapSubwindows
R__EXTERN void * gTQSender
void Printf(const char *fmt,...)
Formats a string in a circular formatting buffer and prints the string.
virtual void Terminate(Int_t status=0)
Terminate the application by call TSystem::Exit() unless application has been told to return from Run...
A composite frame that layout their children in horizontal way.
This class describes layout hints used by the layout classes.
A listbox is a box, possibly with scrollbar, containing entries.
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.