This macro gives an example of how to set/change text entry attributes.
To run it do either:
private:
public:
};
{
fCombo->Resize(100, 20);
}
protected:
public:
};
TextEntryWindow::TextEntryWindow()
{
combo->Connect(
"Selected(Int_t)",
"TGTextEntry",
entry,
"SetEchoMode(TGTextEntry::EEchoMode)");
fAlign =
new GroupBox(fMain,
"Alignment",
"Type:");
combo = fAlign->GetCombo();
entry = fAlign->GetEntry();
combo->Connect(
"Selected(Int_t)",
"TGTextEntry",
entry,
"SetAlignment(ETextJustification)");
combo->AddEntry(
"False", 1);
combo->AddEntry(
"True", 0);
combo->Connect(
"Selected(Int_t)",
"TGTextEntry",
entry,
"SetEnabled(Int_t)");
fBorder =
new GroupBox(fMain,
"Border",
"Drawn:");
combo = fBorder->GetCombo();
entry = fBorder->GetEntry();
combo->AddEntry(
"False", 0);
combo->AddEntry(
"True", 1);
combo->Connect(
"Selected(Int_t)",
"TGTextEntry",
entry,
"SetFrameDrawn(Int_t)");
fMain->Connect(
"CloseWindow()",
"TApplication",
gApplication,
"Terminate()");
fMain->DontCallClose();
fMain->MapSubwindows();
fMain->Resize();
fMain->SetWMSizeHints(fMain->GetDefaultWidth(), fMain->GetDefaultHeight(), 1000, 1000, 0, 0);
fMain->SetWindowName("Text Entries");
fMain->MapRaised();
}
{
}
#define ClassDef(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
A combobox (also known as a drop down listbox) allows the selection of one item out of a list of item...
A composite frame with a border and a title.
A composite frame that layout their children in horizontal way.
This class handles GUI labels.
This class describes layout hints used by the layout classes.
Defines top level windows that interact with the system Window Manager.
A TGTextEntry is a one line text input widget.
ROOT GUI Window base class.
- Author
- Valeriy Onuchin 25/08/2007
Definition in file textEntries.C.