#include <FWDialogBuilder.h>
Public Member Functions | |
FWDialogBuilder & | addCheckbox (const char *text, TGCheckButton **out=0) |
FWDialogBuilder & | addColorPicker (const FWColorManager *manager, FWColorSelect **out=0) |
FWDialogBuilder & | addHSeparator (size_t horizontalPadding=4, size_t verticalPadding=3) |
FWDialogBuilder & | addHSlider (size_t size, TGHSlider **out=0) |
FWDialogBuilder & | addHtml (TGHtml **out=0) |
FWDialogBuilder & | addLabel (const char *text, size_t fontSize=12, size_t weight=0, TGLabel **out=0) |
FWDialogBuilder & | addNumberEntry (float defaultValue, size_t digits, TGNumberFormat::EStyle style, int min, int max, TGNumberEntry **out) |
FWDialogBuilder & | addTable (FWTableManagerBase *manager, FWTableWidget **out=0) |
FWDialogBuilder & | addTextButton (const char *text, TGTextButton **out=0) |
FWDialogBuilder & | addTextEdit (const char *defaultText=0, TGTextEdit **out=0) |
FWDialogBuilder & | addTextEntry (const char *defaultText, TGTextEntry **out) |
FWDialogBuilder & | addTextView (const char *defaultText=0, TGTextView **out=0) |
FWDialogBuilder & | addValidatingTextEntry (const char *defaultText, FWGUIValidatingTextEntry **out) |
FWDialogBuilder & | beginTab (const char *label) |
FWDialogBuilder & | endTab (void) |
FWDialogBuilder & | expand (size_t expandX=true, size_t expandY=false) |
FWDialogBuilder & | floatLeft (size_t spacing=3) |
FWDialogBuilder & | frameSpaceDown (size_t spacing=3) |
FWDialogBuilder & | frameSpaceLeft (size_t spacing=3) |
FWDialogBuilder & | frameSpaceLeftRight (size_t spacing=3) |
FWDialogBuilder & | frameSpaceRight (size_t spacing=3) |
FWDialogBuilder & | frameSpaceUp (size_t spacing=3) |
FWDialogBuilder & | frameSpaceUpDown (size_t spacing=3) |
FWDialogBuilder (TGCompositeFrame *window, FWDialogBuilder *parent=0, bool expandY=true) | |
FWDialogBuilder & | hSpacer (size_t size=0) |
FWDialogBuilder & | indent (int left=2, int right=-1) |
FWDialogBuilder & | newRow () |
FWDialogBuilder & | spaceDown (size_t spacing=3) |
FWDialogBuilder & | spaceLeft (size_t spacing=3) |
FWDialogBuilder & | spaceLeftRight (size_t spacing=3) |
FWDialogBuilder & | spaceRight (size_t spacing=3) |
FWDialogBuilder & | spaceUp (size_t spacing=3) |
FWDialogBuilder & | spaceUpDown (size_t spacing=3) |
FWDialogBuilder & | tabs (TGTab **out) |
FWDialogBuilder & | unindent (void) |
FWDialogBuilder & | untabs (void) |
FWDialogBuilder & | vSpacer (size_t size=0) |
Protected Member Functions | |
template<class T > | |
FWDialogBuilder & | extract (T *in, T **out) |
Protected Member Functions inherited from FWLayoutBuilder | |
TGCompositeFrame * | currentFrame (void) |
FWLayoutBuilder & | expand (bool expandX=true, bool expandY=false) |
FWLayoutBuilder & | floatLeft (size_t spacing) |
void | frameForTab () |
FWLayoutBuilder & | frameSpaceDown (size_t spacing) |
FWLayoutBuilder & | frameSpaceLeft (size_t spacing) |
FWLayoutBuilder & | frameSpaceRight (size_t spacing) |
FWLayoutBuilder & | frameSpaceUp (size_t spacing) |
FWLayoutBuilder (TGCompositeFrame *window, bool expandY=true) | |
FWLayoutBuilder & | indent (int left=2, int right=-1) |
bool | isFloatingLeft () |
FWLayoutBuilder & | newRow () |
TGCompositeFrame * | nextFrame () |
TGLayoutHints * | nextHints () |
FWLayoutBuilder & | spaceDown (size_t spacing) |
FWLayoutBuilder & | spaceLeft (size_t spacing) |
FWLayoutBuilder & | spaceRight (size_t spacing) |
FWLayoutBuilder & | spaceUp (size_t spacing) |
FWLayoutBuilder & | unindent (void) |
TGVerticalFrame * | verticalFrame () |
Private Attributes | |
FWDialogBuilder * | m_parent |
TGTab * | m_tabs |
Helper class to construct dialogs in a more readable ways. Encapsulated TGUI layout hiccups and exposes the developer an API which allows to layout items in a top->bottom, right->left manner. Example: FWDialogBuilder builder(parent); parent.newRow(2) // New row which has a 2 pixel padding on top. .addLabel("MyLabel:") // A new label. .indent(20) // Whatever follows is indented 20 pixels
on the right. .addLabel("MyLabel2") // Another label. .spaceDown(4) .addTextButton("Aligned to MyLabel2 ").floatLeft() .addTextButton("Same Row as previous") .unindent() // back one level in the indentation. .addLabel("Aligned to MyLabel:")
Because in ROOT layout and parenting of widgets are mixed we need to take responsibility for creating the widget objects (sigh!), so we have one "addXYZ" method per widget that can be added. If we find our way around this it would be better to have a generic "addWidget()" method and create widgets outside this class.
TODO: For higher configurability we should have an "addWithCallback(Callbak)" method which can be used to specify a generic widget creation action.
Definition at line 94 of file FWDialogBuilder.h.
FWDialogBuilder::FWDialogBuilder | ( | TGCompositeFrame * | window, |
FWDialogBuilder * | parent = 0 , |
||
bool | expandY = true |
||
) |
Helper class to construct dialogs in a more readable ways. Encapsulated TGUI layout hiccups and exposes the developer an API which allows to layout items in a top->bottom, right->left manner. Example: FWDialogBuilder builder(parent); parent.newRow(2) // New row which has a 2 pixel padding on top. .addLabel("MyLabel:") // A new label. .indent(20) // Whatever follows is indented 20 pixels
on the right. .addLabel("MyLabel2") // Another label. .spaceDown(4) .addTextButton("Aligned to MyLabel2 ").floatLeft() .addTextButton("Same Row as previous") .unindent() // back one level in the indentation. .addLabel("Aligned to MyLabel:")
Because in ROOT layout and parenting of widgets are mixed we need to take responsibility for creating the widget objects (sigh!), so we have one "addXYZ" method per widget that can be added. If we find our way around this it would be better to have a generic "addWidget()" method and create widgets outside this class.
TODO: For higher configurability we should have an "addWithCallback(Callbak)" method which can be used to specify a generic widget creation action.
Definition at line 241 of file FWDialogBuilder.cc.
Referenced by beginTab().
FWDialogBuilder & FWDialogBuilder::addCheckbox | ( | const char * | text, |
TGCheckButton ** | out = 0 |
||
) |
Definition at line 411 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI(), CmsShowModelPopup::CmsShowModelPopup(), and FWGUIEventDataAdder::createWindow().
FWDialogBuilder & FWDialogBuilder::addColorPicker | ( | const FWColorManager * | manager, |
FWColorSelect ** | out = 0 |
||
) |
Definition at line 336 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI(), and CmsShowModelPopup::CmsShowModelPopup().
FWDialogBuilder & FWDialogBuilder::addHSeparator | ( | size_t | horizontalPadding = 4 , |
size_t | verticalPadding = 3 |
||
) |
Definition at line 434 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), newRow(), and FWLayoutBuilder::nextFrame().
Referenced by CmsShowEDI::CmsShowEDI(), and CmsShowModelPopup::CmsShowModelPopup().
FWDialogBuilder & FWDialogBuilder::addHSlider | ( | size_t | size, |
TGHSlider ** | out = 0 |
||
) |
Definition at line 350 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI(), and CmsShowModelPopup::CmsShowModelPopup().
FWDialogBuilder & FWDialogBuilder::addHtml | ( | TGHtml ** | out = 0 | ) |
Definition at line 315 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), expand(), extract(), cmsCodeRulesChecker::html, FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
FWDialogBuilder & FWDialogBuilder::addLabel | ( | const char * | text, |
size_t | fontSize = 12 , |
||
size_t | weight = 0 , |
||
TGLabel ** | out = 0 |
||
) |
Definition at line 270 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), extract(), diffTwoXMLs::label, FWLayoutBuilder::nextFrame(), FWLayoutBuilder::nextHints(), and edmIntegrityCheck::pool.
Referenced by CmsShowEDI::CmsShowEDI(), CmsShowModelPopup::CmsShowModelPopup(), FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::addNumberEntry | ( | float | defaultValue, |
size_t | digits, | ||
TGNumberFormat::EStyle | style, | ||
int | min, | ||
int | max, | ||
TGNumberEntry ** | out | ||
) |
Definition at line 393 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), mps_splice::entry, extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::addTable | ( | FWTableManagerBase * | manager, |
FWTableWidget ** | out = 0 |
||
) |
Definition at line 422 of file FWDialogBuilder.cc.
References expand(), extract(), TableParser::table, and FWLayoutBuilder::verticalFrame().
Referenced by FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::addTextButton | ( | const char * | text, |
TGTextButton ** | out = 0 |
||
) |
Definition at line 362 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI(), FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::addTextEdit | ( | const char * | defaultText = 0 , |
TGTextEdit ** | out = 0 |
||
) |
Definition at line 324 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), expand(), extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
FWDialogBuilder & FWDialogBuilder::addTextEntry | ( | const char * | defaultText, |
TGTextEntry ** | out | ||
) |
Definition at line 382 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), mps_splice::entry, extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI(), FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::addTextView | ( | const char * | defaultText = 0 , |
TGTextView ** | out = 0 |
||
) |
Definition at line 303 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), expand(), extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::addValidatingTextEntry | ( | const char * | defaultText, |
FWGUIValidatingTextEntry ** | out | ||
) |
Definition at line 372 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), mps_splice::entry, extract(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::beginTab | ( | const char * | label | ) |
Adds a new tab called label. A new tab gets a new builder so that tab building is completely scoped.
Definition at line 493 of file FWDialogBuilder.cc.
References FWDialogBuilder(), m_tabs, and newRow().
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::endTab | ( | void | ) |
When we are done with the tab, we delete ourself and return the parent.
Definition at line 504 of file FWDialogBuilder.cc.
References m_parent.
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::expand | ( | size_t | expandX = true , |
size_t | expandY = false |
||
) |
Definition at line 611 of file FWDialogBuilder.cc.
References FWLayoutBuilder::expand().
Referenced by addHtml(), addTable(), addTextEdit(), addTextView(), CmsShowEDI::CmsShowEDI(), CmsShowModelPopup::CmsShowModelPopup(), FWGUIEventDataAdder::createWindow(), FWPathsPopup::FWPathsPopup(), hSpacer(), and vSpacer().
|
inlineprotected |
Definition at line 164 of file FWDialogBuilder.h.
References recoMuon::in.
Referenced by BeautifulSoup.PageElement::_invert(), addCheckbox(), addColorPicker(), addHSlider(), addHtml(), addLabel(), addNumberEntry(), addTable(), addTextButton(), addTextEdit(), addTextEntry(), addTextView(), addValidatingTextEntry(), BeautifulSoup.Tag::decompose(), and tabs().
FWDialogBuilder & FWDialogBuilder::floatLeft | ( | size_t | spacing = 3 | ) |
Definition at line 512 of file FWDialogBuilder.cc.
References FWLayoutBuilder::floatLeft().
Referenced by CmsShowEDI::CmsShowEDI(), FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::frameSpaceDown | ( | size_t | spacing = 3 | ) |
Definition at line 573 of file FWDialogBuilder.cc.
References FWLayoutBuilder::frameSpaceDown().
Referenced by FWGUIEventDataAdder::createWindow().
FWDialogBuilder & FWDialogBuilder::frameSpaceLeft | ( | size_t | spacing = 3 | ) |
Definition at line 588 of file FWDialogBuilder.cc.
References FWLayoutBuilder::frameSpaceLeft().
FWDialogBuilder & FWDialogBuilder::frameSpaceLeftRight | ( | size_t | spacing = 3 | ) |
Definition at line 602 of file FWDialogBuilder.cc.
References FWLayoutBuilder::frameSpaceLeft(), and FWLayoutBuilder::frameSpaceRight().
FWDialogBuilder & FWDialogBuilder::frameSpaceRight | ( | size_t | spacing = 3 | ) |
Definition at line 595 of file FWDialogBuilder.cc.
References FWLayoutBuilder::frameSpaceRight().
FWDialogBuilder & FWDialogBuilder::frameSpaceUp | ( | size_t | spacing = 3 | ) |
Definition at line 566 of file FWDialogBuilder.cc.
References FWLayoutBuilder::frameSpaceUp().
FWDialogBuilder & FWDialogBuilder::frameSpaceUpDown | ( | size_t | spacing = 3 | ) |
Definition at line 580 of file FWDialogBuilder.cc.
References FWLayoutBuilder::frameSpaceDown(), and FWLayoutBuilder::frameSpaceUp().
Referenced by FWGUIEventDataAdder::createWindow().
FWDialogBuilder & FWDialogBuilder::hSpacer | ( | size_t | size = 0 | ) |
Definition at line 637 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), expand(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by FWGUIEventDataAdder::createWindow().
FWDialogBuilder & FWDialogBuilder::indent | ( | int | left = 2 , |
int | right = -1 |
||
) |
Definition at line 256 of file FWDialogBuilder.cc.
References FWLayoutBuilder::indent().
Referenced by CmsShowEDI::CmsShowEDI(), CmsShowModelPopup::CmsShowModelPopup(), FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::newRow | ( | void | ) |
Definition at line 249 of file FWDialogBuilder.cc.
References FWLayoutBuilder::newRow().
Referenced by addHSeparator(), beginTab(), and vSpacer().
FWDialogBuilder & FWDialogBuilder::spaceDown | ( | size_t | spacing = 3 | ) |
Definition at line 526 of file FWDialogBuilder.cc.
References FWLayoutBuilder::spaceDown().
Referenced by FWGUIEventDataAdder::createWindow(), and FWPathsPopup::FWPathsPopup().
FWDialogBuilder & FWDialogBuilder::spaceLeft | ( | size_t | spacing = 3 | ) |
Definition at line 541 of file FWDialogBuilder.cc.
References FWLayoutBuilder::spaceLeft().
FWDialogBuilder & FWDialogBuilder::spaceLeftRight | ( | size_t | spacing = 3 | ) |
Definition at line 555 of file FWDialogBuilder.cc.
References FWLayoutBuilder::spaceLeft(), and FWLayoutBuilder::spaceRight().
FWDialogBuilder & FWDialogBuilder::spaceRight | ( | size_t | spacing = 3 | ) |
Definition at line 548 of file FWDialogBuilder.cc.
References FWLayoutBuilder::spaceRight().
Referenced by FWGUIEventDataAdder::createWindow().
FWDialogBuilder & FWDialogBuilder::spaceUp | ( | size_t | spacing = 3 | ) |
Definition at line 519 of file FWDialogBuilder.cc.
References FWLayoutBuilder::spaceUp().
Referenced by FWGUIEventDataAdder::createWindow().
FWDialogBuilder & FWDialogBuilder::spaceUpDown | ( | size_t | spacing = 3 | ) |
Definition at line 533 of file FWDialogBuilder.cc.
References FWLayoutBuilder::spaceDown(), and FWLayoutBuilder::spaceUp().
FWDialogBuilder & FWDialogBuilder::tabs | ( | TGTab ** | out | ) |
Support for tabs. This is done by creating a new DialogBuilder and returning it for each of the added tabs. builder.tabs() // Adds a TGTab widget to the current frame. .beginTab("Foo") // Add a tab to the TGTab. .textButton("In Foo") // This is inside the tab "Foo", the layouting
is independent from previous calls since a separate builder was returned by
.endTab("Foo") // End of the tab. .beginTab("Bar") .endTab("") .untabs(); // Tabs completed. .textButton("Main scope") // This is on the same level as the TGTab.
Definition at line 467 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), extract(), FWLayoutBuilder::frameForTab(), and m_tabs.
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::unindent | ( | void | ) |
FWDialogBuilder & FWDialogBuilder::untabs | ( | void | ) |
Definition at line 481 of file FWDialogBuilder.cc.
References assert(), and m_tabs.
Referenced by CmsShowEDI::CmsShowEDI().
FWDialogBuilder & FWDialogBuilder::vSpacer | ( | size_t | size = 0 | ) |
Definition at line 618 of file FWDialogBuilder.cc.
References FWLayoutBuilder::currentFrame(), expand(), newRow(), FWLayoutBuilder::nextFrame(), and FWLayoutBuilder::nextHints().
Referenced by CmsShowEDI::CmsShowEDI().
|
private |
Definition at line 172 of file FWDialogBuilder.h.
Referenced by endTab().
|
private |
Definition at line 173 of file FWDialogBuilder.h.
Referenced by beginTab(), tabs(), and untabs().