Demonstrates usage of EVE window-manager.
void window_manager()
{
PackTest();
DetailTest();
TabsTest();
}
void PackTest()
{
pack1->SetHorizontal();
}
void DetailTest()
{
pack1->SetElementName("Detail");
pack1->SetHorizontal();
{
double fontsize = 0.07;
double x = 0.02;
double y = 1 -1*fontsize;
y -= 2*fontsize;
latex->
DrawLatex(x, y,
"greek letter #Delta#eta_{out}");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[5]{+} marker");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[5]{+} marker");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[4]{+} marker");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[5]{#bullet} marker");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[4]{#bullet} marker some text");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[2]{#Box} square");
y -= fontsize;
latex->
DrawLatex(x, y,
"#color[5]{#Box} color");
}
}
void TabsTest()
{
tab1->SetShowTitleBar(
kFALSE);
for(int i = 0; i<4;++i)
{
for(
Int_t l =0; l<weight; l++)
{
text_view->
AddLine(
Form(
"slot[%d] add line %d here ", i, l));
}
}
}
- Author
- Matevz Tadel
Definition in file window_manager.C.