CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
CmsShowEDI Class Reference

#include <Fireworks/Core/interface/CmsShowEDI.h>

Inheritance diagram for CmsShowEDI:

Public Member Functions

void changeItemColor (Color_t color)
 
void changeItemOpacity (Int_t opacity)
 
void changeSelectionColor (Color_t color)
 
 ClassDef (CmsShowEDI, 0)
 
virtual void CloseWindow ()
 
 CmsShowEDI (const TGWindow *p=0, UInt_t w=1, UInt_t h=1, FWSelectionManager *selMgr=0, FWColorManager *colorMgr=0)
 
void colorSetChanged ()
 
void deselectAll ()
 
void disconnectAll ()
 
void fillEDIFrame ()
 
void moveToBack ()
 
void moveToFront ()
 
void moveToLayer (Long_t)
 
void removeItem ()
 
void runFilter ()
 
void runSelection ()
 
void selectAll ()
 
void show (FWDataCategories)
 
void toggleItemVisible (Bool_t on=kTRUE)
 
void updateDisplay ()
 
void updateFilter ()
 
void updateLayerControls ()
 
virtual ~CmsShowEDI ()
 

Private Member Functions

void clearPBFrame ()
 
 CmsShowEDI (const CmsShowEDI &)
 
const CmsShowEDIoperator= (const CmsShowEDI &)
 

Private Attributes

TGTextButton * m_backButton
 
FWColorManagerm_colorManager
 
FWColorSelectm_colorSelectWidget
 
FWColorSelectm_cw
 
TGTextButton * m_deselectAllButton
 
sigc::connection m_destroyedConn
 
sigc::connection m_displayChangedConn
 
TGTextButton * m_filterButton
 
TGTextView * m_filterError
 
FWGUIValidatingTextEntrym_filterExpressionEntry
 
TGTextButton * m_frontButton
 
TGTextEntry * m_instanceEntry
 
TGCheckButton * m_isVisibleButton
 
FWEventItemm_item
 
TGNumberEntry * m_layerEntry
 
sigc::connection m_modelChangedConn
 
TGTextEntry * m_moduleEntry
 
TGTextEntry * m_nameEntry
 
TGLabel * m_objectLabel
 
TGHSlider * m_opacitySlider
 
TGTextEntry * m_processEntry
 
TGTextButton * m_removeButton
 
TGTextButton * m_selectAllButton
 
TGTextButton * m_selectButton
 
TGTextView * m_selectError
 
FWGUIValidatingTextEntrym_selectExpressionEntry
 
FWSelectionManagerm_selectionManager
 
TGCompositeFrame * m_settersFrame
 
TGTab * m_tabs
 
TGTextEntry * m_typeEntry
 
FWExpressionValidatorm_validator
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 53 of file CmsShowEDI.h.

Constructor & Destructor Documentation

CmsShowEDI::CmsShowEDI ( const TGWindow *  p = 0,
UInt_t  w = 1,
UInt_t  h = 1,
FWSelectionManager selMgr = 0,
FWColorManager colorMgr = 0 
)

Definition at line 64 of file CmsShowEDI.cc.

References FWDialogBuilder::addCheckbox(), FWDialogBuilder::addColorPicker(), FWDialogBuilder::addHSeparator(), FWDialogBuilder::addHSlider(), FWDialogBuilder::addLabel(), FWDialogBuilder::addNumberEntry(), FWDialogBuilder::addTextButton(), FWDialogBuilder::addTextEntry(), FWDialogBuilder::addTextView(), FWDialogBuilder::addValidatingTextEntry(), FWDialogBuilder::beginTab(), FWDialogBuilder::endTab(), FWDialogBuilder::expand(), fillEDIFrame(), FWDialogBuilder::floatLeft(), FWDialogBuilder::indent(), FWSelectionManager::itemSelectionChanged_, m_backButton, m_colorSelectWidget, m_cw, m_deselectAllButton, m_filterButton, m_filterError, m_filterExpressionEntry, m_frontButton, m_instanceEntry, m_isVisibleButton, m_layerEntry, m_moduleEntry, m_nameEntry, m_objectLabel, m_opacitySlider, m_processEntry, m_removeButton, m_selectAllButton, m_selectButton, m_selectError, m_selectExpressionEntry, m_selectionManager, m_settersFrame, m_tabs, m_typeEntry, m_validator, FWEventItem::maxLayerValue(), FWEventItem::minLayerValue(), FWGUIValidatingTextEntry::setValidator(), FWDialogBuilder::tabs(), FWDialogBuilder::untabs(), and FWDialogBuilder::vSpacer().

64  :
65  TGTransientFrame(gClient->GetDefaultRoot(), p, w, h),
66  m_item(0),
68  m_colorManager(colorMgr),
70 {
71  m_selectionManager = selMgr;
72  SetCleanup(kDeepCleanup);
73 
75 
76  TGVerticalFrame* vf = new TGVerticalFrame(this);
77  AddFrame(vf, new TGLayoutHints(kLHintsExpandX|kLHintsExpandY, 0, 0, 0, 0));
78  FWDialogBuilder builder(vf);
79 
80  builder.indent(0)
81  .addLabel(" ", 14, 2, &m_objectLabel)
82  .vSpacer()
83  .tabs(&m_tabs)
84  .beginTab("Graphics")
85  .indent(3)
86  .addLabel("Color", 8)
87  .addColorPicker(colorMgr, &m_colorSelectWidget).expand(false)
88  .addHSeparator()
89  .addLabel("Opacity", 8)
90  .addHSlider(150, &m_opacitySlider)
91  .addHSeparator()
92  .addCheckbox("Visible", &m_isVisibleButton)
93  .addHSeparator()
94  .addLabel("Drawing order", 8)
95  .addTextButton("To back", &m_backButton).floatLeft().expand(false)
96  .addNumberEntry(0.0, 4, TGNumberFormat::kNESInteger,
99  &m_layerEntry).expand(false).floatLeft()
100  .addTextButton("To front", &m_frontButton).expand(false)
101  .vSpacer()
102  .addHSeparator()
103  .endTab()
104  .beginTab("Filter")
105  .indent(3)
106  .addLabel("Expression", 8)
107  .addValidatingTextEntry(0, &m_filterExpressionEntry).floatLeft()
108  .addTextButton("Filter", &m_filterButton).expand(false)
109  .addTextView("", &m_filterError)
110  .vSpacer()
111  .endTab()
112  .beginTab("Select")
113  .indent(3)
114  .addLabel("Expression", 8)
115  .addValidatingTextEntry(0, &m_selectExpressionEntry)
116  .addTextButton("Select", &m_selectButton).floatLeft().expand(false)
117  .addTextButton("Select all", &m_selectAllButton).expand(false).floatLeft()
118  .addTextButton("Unselect all", &m_deselectAllButton).expand(false)
119  .indent(3)
120  .addLabel("Color Selection", 8)
121  .addColorPicker(colorMgr, &m_cw).expand(false)
122  .addTextView("", &m_selectError)
123  .vSpacer()
124  .endTab()
125  .beginTab("Data")
126  .indent(3)
127  .addLabel("Name:", 8)
128  .addTextEntry("None", &m_nameEntry)
129  .addLabel("Labels:", 8)
130  .addLabel("Type:", 8)
131  .addTextEntry("None", &m_typeEntry)
132  .addLabel("Module:", 8)
133  .addTextEntry("None", &m_moduleEntry)
134  .addLabel("Instance:", 8)
135  .addTextEntry("None", &m_instanceEntry)
136  .addLabel("Process:", 8)
137  .addTextEntry("None", &m_processEntry)
138  .addHSeparator()
139  .addTextButton("Remove collection", &m_removeButton).expand(false)
140  .vSpacer()
141  .endTab()
142  .untabs();
143 
144  m_filterError->SetForegroundColor(gVirtualX->GetPixel(kRed));
145  m_filterError->SetBackgroundColor(TGFrame::GetDefaultFrameBackground());
146  m_filterError->ChangeOptions(0);
147 
148  m_selectError->SetForegroundColor(gVirtualX->GetPixel(kRed));
149  m_selectError->SetBackgroundColor(TGFrame::GetDefaultFrameBackground());
150  m_selectError->ChangeOptions(0);
151 
154 
155  m_colorSelectWidget->Connect("ColorChosen(Color_t)", "CmsShowEDI", this, "changeItemColor(Color_t)");
156  m_cw->Connect("ColorChosen(Color_t)", "CmsShowEDI", this, "changeSelectionColor(Color_t)");
157  m_opacitySlider->Connect("PositionChanged(Int_t)", "CmsShowEDI", this, "changeItemOpacity(Int_t)");
158  m_isVisibleButton->Connect("Toggled(Bool_t)", "CmsShowEDI", this, "toggleItemVisible(Bool_t)");
159  m_filterExpressionEntry->Connect("ReturnPressed()", "CmsShowEDI", this, "runFilter()");
160  m_filterButton->Connect("Clicked()", "CmsShowEDI", this, "runFilter()");
161  m_selectExpressionEntry->Connect("ReturnPressed()", "CmsShowEDI", this, "runSelection()");
162  m_selectButton->Connect("Clicked()", "CmsShowEDI", this, "runSelection()");
163  m_removeButton->Connect("Clicked()", "CmsShowEDI", this, "removeItem()");
164  m_selectAllButton->Connect("Clicked()", "CmsShowEDI", this, "selectAll()");
165  m_deselectAllButton->Connect("Clicked()", "CmsShowEDI", this, "deselectAll()");
166  m_frontButton->Connect("Clicked()","CmsShowEDI",this,"moveToFront()");
167  m_backButton->Connect("Clicked()","CmsShowEDI",this,"moveToBack()");
168  m_layerEntry->Connect("ValueSet(Long_t)","CmsShowEDI",this,"moveToLayer(Long_t)");
169 
170 
171  TGCompositeFrame* cf = m_tabs->GetTabContainer(0);
172  m_settersFrame = new TGVerticalFrame(cf);
173  m_settersFrame->SetCleanup(kDeepCleanup);
174  // m_settersFrame->SetBackgroundColor(0xff00ff);
175  cf->AddFrame(m_settersFrame, new TGLayoutHints(kLHintsExpandX| kLHintsExpandY ));
176 
177  SetWindowName("Collection Controller");
178  MapSubwindows();
179  Resize(GetDefaultSize());
180  Layout();
181 
182  fillEDIFrame();
183 }
void fillEDIFrame()
Definition: CmsShowEDI.cc:243
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:109
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
TGLabel * m_objectLabel
Definition: CmsShowEDI.h:102
TGTab * m_tabs
Definition: CmsShowEDI.h:101
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:114
static int maxLayerValue()
Definition: FWEventItem.cc:44
TGCompositeFrame * m_settersFrame
Definition: CmsShowEDI.h:133
TGTextEntry * m_instanceEntry
Definition: CmsShowEDI.h:120
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
TGTextButton * m_deselectAllButton
Definition: CmsShowEDI.h:115
void setValidator(FWValidatorBase *)
TGTextButton * m_backButton
Definition: CmsShowEDI.h:105
TGTextEntry * m_moduleEntry
Definition: CmsShowEDI.h:119
static int minLayerValue()
Definition: FWEventItem.cc:39
FWColorManager * m_colorManager
Definition: CmsShowEDI.h:131
TGTextView * m_selectError
Definition: CmsShowEDI.h:129
TGTextButton * m_removeButton
Definition: CmsShowEDI.h:103
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
FWExpressionValidator * m_validator
Definition: CmsShowEDI.h:130
TGTextView * m_filterError
Definition: CmsShowEDI.h:128
TGTextEntry * m_processEntry
Definition: CmsShowEDI.h:121
sigc::signal< void, const FWSelectionManager & > itemSelectionChanged_
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:112
FWSelectionManager * m_selectionManager
Definition: CmsShowEDI.h:100
TGTextEntry * m_typeEntry
Definition: CmsShowEDI.h:118
FWEventItem * m_item
Definition: CmsShowEDI.h:122
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
TGTextEntry * m_nameEntry
Definition: CmsShowEDI.h:117
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:104
T w() const
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
CmsShowEDI::~CmsShowEDI ( )
virtual

Definition at line 190 of file CmsShowEDI.cc.

References disconnectAll(), m_backButton, m_colorSelectWidget, m_cw, m_deselectAllButton, m_filterButton, m_filterExpressionEntry, m_frontButton, m_isVisibleButton, m_layerEntry, m_opacitySlider, m_removeButton, m_selectAllButton, m_selectButton, m_selectExpressionEntry, and m_validator.

191 {
192  disconnectAll();
193  m_colorSelectWidget->Disconnect("ColorSelected(Pixel_t)", this, "changeItemColor(Pixel_t)");
194  m_cw->Disconnect("ColorSelected(Pixel_t)", this, "changeSelectionColor(Pixel_t)");
195  m_opacitySlider->Disconnect("PositionChanged(Int_t)", this, "changeItemColor");
196  m_isVisibleButton->Disconnect("Toggled(Bool_t)", this, "toggleItemVisible(Bool_t)");
197  m_filterExpressionEntry->Disconnect("ReturnPressed()", this, "runFilter()");
198  m_selectExpressionEntry->Disconnect("ReturnPressed()", this, "runSelection()");
199  m_filterButton->Disconnect("Clicked()", this, "runFilter()");
200  m_selectButton->Disconnect("Clicked()", this, "runSelection()");
201  m_selectAllButton->Disconnect("Clicked()", this, "selectAll()");
202  m_deselectAllButton->Disconnect("Clicked()", this, "deselectAll()");
203  m_removeButton->Disconnect("Clicked()", this, "removeItem()");
204  m_frontButton->Disconnect("Clicked()",this,"moveToFront()");
205  m_backButton->Disconnect("Clicked()",this,"moveToBack()");
206  m_layerEntry->Disconnect("ValueSet(Long_t)",this,"moveToLayer(Long_t)");
207  // delete m_objectLabel;
208  // delete m_colorSelectWidget;
209  // delete m_isVisibleButton;
210  delete m_validator;
211 }
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:109
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
void disconnectAll()
Definition: CmsShowEDI.cc:370
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:114
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
TGTextButton * m_deselectAllButton
Definition: CmsShowEDI.h:115
TGTextButton * m_backButton
Definition: CmsShowEDI.h:105
TGTextButton * m_removeButton
Definition: CmsShowEDI.h:103
FWExpressionValidator * m_validator
Definition: CmsShowEDI.h:130
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:112
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:104
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
CmsShowEDI::CmsShowEDI ( const CmsShowEDI )
private

Member Function Documentation

void CmsShowEDI::changeItemColor ( Color_t  color)

Set the item color.

Notice that I changed this to use a "Copy and modify approach", rather than a "create with old properties" method which was not propagating transparency.

Definition at line 417 of file CmsShowEDI.cc.

References FWEventItem::defaultDisplayProperties(), m_cw, m_item, FWDisplayProperties::setColor(), FWColorSelect::SetColorByIndex(), and FWEventItem::setDefaultDisplayProperties().

417  {
419  changeProperties.setColor(color);
420  m_item->setDefaultDisplayProperties(changeProperties);
421  m_cw->SetColorByIndex(color,kFALSE);
422 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
void setColor(Color_t iColor)
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
void SetColorByIndex(Color_t iColor)
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:156
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::changeItemOpacity ( Int_t  opacity)

Changes selected item opacity. Notice that we use opacity rather than transparency because this way the slider is by default 100% rather than 0. This is more a more natural and positive way of looking at things.

Glass is full!

See changeItemColor for additional details.

Definition at line 440 of file CmsShowEDI.cc.

References FWEventItem::defaultDisplayProperties(), m_item, FWEventItem::setDefaultDisplayProperties(), and FWDisplayProperties::setTransparency().

440  {
442  changeProperties.setTransparency(100 - opacity);
443  m_item->setDefaultDisplayProperties(changeProperties);
444 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:156
void setTransparency(Char_t transparency)
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::changeSelectionColor ( Color_t  color)

Definition at line 511 of file CmsShowEDI.cc.

References FWEventItem::changeManager(), FWEventItem::defaultDisplayProperties(), i, m_item, FWSelectionManager::selected(), FWEventItem::selectionManager(), FWDisplayProperties::setColor(), and FWEventItem::setDisplayProperties().

512 {
513  FWChangeSentry sentry(*(m_item->changeManager()));
514  const std::set<FWModelId>& ss = m_item->selectionManager()->selected();
516  dp.setColor(c);
517  for (std::set<FWModelId>::const_iterator i = ss.begin(); i != ss.end(); ++i ) {
518  m_item->setDisplayProperties(i->index(), dp);
519  }
520 }
const std::set< FWModelId > & selected() const
int i
Definition: DBlmapReader.cc:9
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
void setColor(Color_t iColor)
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:131
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:277
FWSelectionManager * selectionManager() const
Definition: FWEventItem.h:134
FWEventItem * m_item
Definition: CmsShowEDI.h:122
CmsShowEDI::ClassDef ( CmsShowEDI  ,
 
)
void CmsShowEDI::clearPBFrame ( )
private

Definition at line 229 of file CmsShowEDI.cc.

References f, and m_settersFrame.

Referenced by disconnectAll(), and fillEDIFrame().

230 {
231  if (!m_settersFrame->GetList()->IsEmpty())
232  {
233  // printf("remove FRAME \n");
234  TGFrameElement *el = (TGFrameElement*) m_settersFrame->GetList()->First();
235  TGFrame* f = el->fFrame;
236  f->UnmapWindow();
237  m_settersFrame->RemoveFrame(f);
238  f->DestroyWindow();
239  }
240 }
TGCompositeFrame * m_settersFrame
Definition: CmsShowEDI.h:133
double f[11][100]
virtual void CmsShowEDI::CloseWindow ( )
inlinevirtual

Definition at line 61 of file CmsShowEDI.h.

61 { UnmapWindow(); }
void CmsShowEDI::colorSetChanged ( )

Definition at line 531 of file CmsShowEDI.cc.

References FWDisplayProperties::color(), FWEventItem::defaultDisplayProperties(), m_colorSelectWidget, m_cw, m_item, AlCaHLTBitMon_ParallelJobs::p, and FWColorSelect::SetColorByIndex().

Referenced by FWGUIManager::finishUpColorChange().

532 {
533  if (m_item)
534  {
537  m_cw->SetColorByIndex(p.color(),kFALSE);
538  }
539 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
void SetColorByIndex(Color_t iColor)
Color_t color() const
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::deselectAll ( )

Definition at line 501 of file CmsShowEDI.cc.

References FWEventItem::changeManager(), i, m_item, FWEventItem::size(), and FWEventItem::unselect().

502 {
503  FWChangeSentry sentry(*(m_item->changeManager()));
504  for (int i = 0; i < static_cast<int>(m_item->size()); i++)
505  {
506  m_item->unselect(i);
507  }
508 }
int i
Definition: DBlmapReader.cc:9
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:131
void unselect(int iIndex) const
Definition: FWEventItem.cc:240
size_t size() const
Definition: FWEventItem.cc:548
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::disconnectAll ( )

Definition at line 370 of file CmsShowEDI.cc.

References clearPBFrame(), m_backButton, m_colorSelectWidget, m_deselectAllButton, m_destroyedConn, m_displayChangedConn, m_filterButton, m_filterExpressionEntry, m_frontButton, m_instanceEntry, m_isVisibleButton, m_item, m_layerEntry, m_modelChangedConn, m_moduleEntry, m_nameEntry, m_objectLabel, m_opacitySlider, m_processEntry, m_removeButton, m_selectAllButton, m_selectButton, m_selectExpressionEntry, m_typeEntry, and FWColorSelect::SetColorByIndex().

Referenced by fillEDIFrame(), and ~CmsShowEDI().

370  {
371  m_objectLabel->SetText("No Collection Selected");
372  clearPBFrame();
373  if(0 != m_item) {
374  m_displayChangedConn.disconnect();
375  m_modelChangedConn.disconnect();
376  m_destroyedConn.disconnect();
377  m_item = 0;
379  m_opacitySlider->SetPosition(100);
380  m_isVisibleButton->SetDisabledAndSelected(kTRUE);
381  m_filterExpressionEntry->SetText(0);
382  m_selectExpressionEntry->SetText(0);
383  m_nameEntry->SetText(0);
384  m_typeEntry->SetText(0);
385  m_moduleEntry->SetText(0);
386  m_instanceEntry->SetText(0);
387  m_processEntry->SetText(0);
388  // else m_isVisibleButton->SetState(kButtonDown, kFALSE);
389  m_colorSelectWidget->SetEnabled(kFALSE);
390  m_opacitySlider->SetEnabled(kFALSE);
391 
392  m_isVisibleButton->SetEnabled(kFALSE);
393  m_filterExpressionEntry->SetEnabled(kFALSE);
394  m_filterButton->SetEnabled(kFALSE);
395  m_selectExpressionEntry->SetEnabled(kFALSE);
396  m_selectButton->SetEnabled(kFALSE);
397  m_selectAllButton->SetEnabled(kFALSE);
398  m_deselectAllButton->SetEnabled(kFALSE);
399  m_removeButton->SetEnabled(kFALSE);
400  m_backButton->SetEnabled(kFALSE);
401  m_frontButton->SetEnabled(kFALSE);
402  m_layerEntry->SetIntNumber(0);
403  m_layerEntry->SetState(kFALSE);
404  m_layerEntry->GetNumberEntry()->SetEnabled(kFALSE);
405  m_layerEntry->GetButtonUp()->SetEnabled(kFALSE);
406  m_layerEntry->GetButtonDown()->SetEnabled(kFALSE);
407  }
408 }
sigc::connection m_displayChangedConn
Definition: CmsShowEDI.h:124
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:109
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
void SetColorByIndex(Color_t iColor)
TGLabel * m_objectLabel
Definition: CmsShowEDI.h:102
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:114
TGTextEntry * m_instanceEntry
Definition: CmsShowEDI.h:120
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
TGTextButton * m_deselectAllButton
Definition: CmsShowEDI.h:115
TGTextButton * m_backButton
Definition: CmsShowEDI.h:105
TGTextEntry * m_moduleEntry
Definition: CmsShowEDI.h:119
sigc::connection m_destroyedConn
Definition: CmsShowEDI.h:126
TGTextButton * m_removeButton
Definition: CmsShowEDI.h:103
TGTextEntry * m_processEntry
Definition: CmsShowEDI.h:121
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:112
TGTextEntry * m_typeEntry
Definition: CmsShowEDI.h:118
FWEventItem * m_item
Definition: CmsShowEDI.h:122
sigc::connection m_modelChangedConn
Definition: CmsShowEDI.h:125
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
TGTextEntry * m_nameEntry
Definition: CmsShowEDI.h:117
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:104
void clearPBFrame()
Definition: CmsShowEDI.cc:229
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
void CmsShowEDI::fillEDIFrame ( )

Definition at line 243 of file CmsShowEDI.cc.

References FWEventItem::changed_, clearPBFrame(), FWDisplayProperties::color(), FWEventItem::defaultDisplayProperties(), FWEventItem::defaultDisplayPropertiesChanged_, disconnectAll(), FWEventItem::filterExpression(), FWEventItem::getConfig(), FWEventItem::goingToBeDestroyed_, FWDisplayProperties::isVisible(), m_colorSelectWidget, m_cw, m_deselectAllButton, m_destroyedConn, m_displayChangedConn, m_filterButton, m_filterError, m_filterExpressionEntry, m_instanceEntry, m_isVisibleButton, m_item, m_layerEntry, m_modelChangedConn, m_moduleEntry, m_nameEntry, m_objectLabel, m_opacitySlider, m_processEntry, m_removeButton, m_selectAllButton, m_selectButton, m_selectError, m_selectExpressionEntry, m_selectionManager, m_settersFrame, m_typeEntry, m_validator, FWEventItem::modelType(), FWEventItem::moduleLabel(), FWEventItem::name(), AlCaHLTBitMon_ParallelJobs::p, FWProxyBuilderConfiguration::populateFrame(), FWEventItem::processName(), FWEventItem::productInstanceLabel(), alignCSCRings::s, FWSelectionManager::selectedItems(), FWColorSelect::SetColorByIndex(), FWExpressionValidator::setType(), FWDisplayProperties::transparency(), FWEventItem::type(), updateDisplay(), updateFilter(), and updateLayerControls().

Referenced by CmsShowEDI().

243  {
244  FWEventItem* iItem =0;
245  bool multipleCollections = false;
246  if(!m_selectionManager->selectedItems().empty()) {
247  if(m_selectionManager->selectedItems().size()==1) {
248  iItem=*(m_selectionManager->selectedItems().begin());
249  } else {
250  multipleCollections=true;
251  }
252  }
253  //m_item can be zero because we had 0 or many collections selected
254  if (0 == m_item || iItem != m_item) {
255  disconnectAll();
256  m_item = iItem;
257  if(0 != m_item) {
259  m_objectLabel->SetText(iItem->name().c_str());
261  m_opacitySlider->SetPosition(100 - p.transparency());
262  m_isVisibleButton->SetDisabledAndSelected(p.isVisible());
263  m_validator->setType(ROOT::Reflex::Type::ByTypeInfo(*(iItem->modelType()->GetTypeInfo())));
264  m_filterExpressionEntry->SetText(iItem->filterExpression().c_str());
265  m_filterError->Clear();
266  m_selectError->Clear();
267  m_nameEntry->SetText(iItem->name().c_str());
268  m_typeEntry->SetText(iItem->type()->GetName());
269  m_moduleEntry->SetText(iItem->moduleLabel().c_str());
270  m_instanceEntry->SetText(iItem->productInstanceLabel().c_str());
271  m_processEntry->SetText(iItem->processName().c_str());
272  // else m_isVisibleButton->SetState(kButtonDown, kFALSE);
273  m_colorSelectWidget->SetEnabled(kTRUE);
274  m_opacitySlider->SetEnabled(kTRUE);
275  m_isVisibleButton->SetEnabled(kTRUE);
276  m_filterExpressionEntry->SetEnabled(kTRUE);
277  m_selectExpressionEntry->SetEnabled(kTRUE);
278  m_filterButton->SetEnabled(kTRUE);
279  m_selectButton->SetEnabled(kTRUE);
280  m_selectAllButton->SetEnabled(kTRUE);
281  m_deselectAllButton->SetEnabled(kTRUE);
282  m_cw->SetColorByIndex(p.color(),kFALSE);
283  m_cw->SetEnabled(kTRUE);
284  m_removeButton->SetEnabled(kTRUE);
286  m_layerEntry->SetState(kTRUE);
288  m_modelChangedConn = m_item->changed_.connect(boost::bind(&CmsShowEDI::updateFilter, this));
289  // m_selectionChangedConn = m_selectionManager->selectionChanged_.connect(boost::bind(&CmsShowEDI::updateSelection, this));
291 
292  clearPBFrame();
294  }
295  else if(multipleCollections) {
296  std::ostringstream s;
297  s<<m_selectionManager->selectedItems().size()<<" Collections Selected";
298  m_objectLabel->SetText(s.str().c_str());
299  }
300 
301  Resize(GetDefaultSize());
302  Layout();
303  }
304 }
void populateFrame(TGCompositeFrame *frame)
FWProxyBuilderConfiguration * getConfig() const
Definition: FWEventItem.h:166
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
sigc::connection m_displayChangedConn
Definition: CmsShowEDI.h:124
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:109
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
void SetColorByIndex(Color_t iColor)
const std::string & name() const
Definition: FWEventItem.cc:500
const std::string & filterExpression() const
Definition: FWEventItem.cc:602
FWItemChangeSignal defaultDisplayPropertiesChanged_
Definition: FWEventItem.h:208
TGLabel * m_objectLabel
Definition: CmsShowEDI.h:102
FWItemChangeSignal goingToBeDestroyed_
Definition: FWEventItem.h:215
void disconnectAll()
Definition: CmsShowEDI.cc:370
const std::string & processName() const
Definition: FWEventItem.cc:529
const std::set< FWEventItem * > & selectedItems() const
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:114
void updateFilter()
Definition: CmsShowEDI.cc:365
TGCompositeFrame * m_settersFrame
Definition: CmsShowEDI.h:133
Color_t color() const
TGTextEntry * m_instanceEntry
Definition: CmsShowEDI.h:120
Char_t transparency() const
const std::string & productInstanceLabel() const
Definition: FWEventItem.cc:523
void updateDisplay()
Definition: CmsShowEDI.cc:330
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
const TClass * type() const
Definition: FWEventItem.cc:506
TGTextButton * m_deselectAllButton
Definition: CmsShowEDI.h:115
TGTextEntry * m_moduleEntry
Definition: CmsShowEDI.h:119
sigc::connection m_destroyedConn
Definition: CmsShowEDI.h:126
TGTextView * m_selectError
Definition: CmsShowEDI.h:129
void setType(const Reflex::Type &)
TGTextButton * m_removeButton
Definition: CmsShowEDI.h:103
FWExpressionValidator * m_validator
Definition: CmsShowEDI.h:130
TGTextView * m_filterError
Definition: CmsShowEDI.h:128
TGTextEntry * m_processEntry
Definition: CmsShowEDI.h:121
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
FWModelChangeSignal changed_
Definition: FWEventItem.h:196
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:112
const TClass * modelType() const
Definition: FWEventItem.cc:561
FWSelectionManager * m_selectionManager
Definition: CmsShowEDI.h:100
TGTextEntry * m_typeEntry
Definition: CmsShowEDI.h:118
FWEventItem * m_item
Definition: CmsShowEDI.h:122
sigc::connection m_modelChangedConn
Definition: CmsShowEDI.h:125
void updateLayerControls()
Definition: CmsShowEDI.cc:339
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
TGTextEntry * m_nameEntry
Definition: CmsShowEDI.h:117
void clearPBFrame()
Definition: CmsShowEDI.cc:229
const std::string & moduleLabel() const
Definition: FWEventItem.cc:518
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
void CmsShowEDI::moveToBack ( )

Definition at line 346 of file CmsShowEDI.cc.

References m_item, FWEventItem::moveToBack(), and updateLayerControls().

347 {
348  m_item->moveToBack();
350 }
void moveToBack()
Definition: FWEventItem.cc:334
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:339
void CmsShowEDI::moveToFront ( )

Definition at line 352 of file CmsShowEDI.cc.

References m_item, FWEventItem::moveToFront(), and updateLayerControls().

353 {
354  m_item->moveToFront();
356 }
void moveToFront()
Definition: FWEventItem.cc:311
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:339
void CmsShowEDI::moveToLayer ( Long_t  )

Definition at line 358 of file CmsShowEDI.cc.

References m_item, m_layerEntry, FWEventItem::moveToLayer(), and updateLayerControls().

359 {
360  m_item->moveToLayer(static_cast<Int_t>(m_layerEntry->GetIntNumber()));
362 }
void moveToLayer(int layer)
Definition: FWEventItem.cc:357
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:339
const CmsShowEDI& CmsShowEDI::operator= ( const CmsShowEDI )
private
void CmsShowEDI::removeItem ( )

Definition at line 307 of file CmsShowEDI.cc.

References FWEventItem::destroy(), m_item, python.rootplot.argparse::message, and FWEventItem::name().

307  {
308  Int_t chosen=0;
309  std::string message("This action will remove the ");
310  message += m_item->name();
311  message +=" collection from the display."
312  "\nIf you wish to return the collection you would have to use the 'Add Collection' window.";
313  new TGMsgBox(gClient->GetDefaultRoot(),
314  this,
315  "Remove Collection Confirmation",
316  message.c_str(),
317  kMBIconExclamation,
318  kMBCancel | kMBApply,
319  &chosen);
320  if(kMBApply == chosen) {
321  m_item->destroy();
322  m_item = 0;
323  //make sure the ROOT global editor does not try to use this
324  gEve->EditElement(0);
325  gEve->Redraw3D();
326  }
327 }
void destroy() const
Definition: FWEventItem.cc:608
const std::string & name() const
Definition: FWEventItem.cc:500
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::runFilter ( )

Definition at line 447 of file CmsShowEDI.cc.

References FWExpressionException::column(), alignCSCRings::e, alcazmumu_cfi::filter, m_filterError, m_filterExpressionEntry, m_item, FWEventItem::setFilterExpression(), and FWExpressionException::what().

447  {
448  const std::string filter(m_filterExpressionEntry->GetText());
449  if (m_item != 0) {
450  try {
451  m_filterError->Clear();
453  } catch( const FWExpressionException& e) {
454  m_filterError->AddLine(e.what().c_str());
455  m_filterError->Update();
456  if(e.column() > -1) {
457  m_filterExpressionEntry->SetCursorPosition(e.column());
458  }
459  }
460  }
461 }
const std::string & what() const
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
void setFilterExpression(const std::string &)
Definition: FWEventItem.cc:200
TGTextView * m_filterError
Definition: CmsShowEDI.h:128
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::runSelection ( )

Definition at line 464 of file CmsShowEDI.cc.

References FWExpressionException::column(), alignCSCRings::e, m_cw, m_item, m_selectError, m_selectExpressionEntry, FWModelExpressionSelector::select(), corrVsCorr::selection, FWEventItem::selectionManager(), and FWExpressionException::what().

464  {
465  FWModelExpressionSelector selector;
466  const std::string selection(m_selectExpressionEntry->GetText());
467  if (m_item != 0)
468  {
469  try
470  {
471  m_selectError->Clear();
472  //NOTE call clearModelSelectionLeaveItem so that the item does not get deselected
473  // just for safety use a copy of the pointer to m_item
474  FWEventItem* item = m_item;
475  item->selectionManager()-> clearModelSelectionLeaveItem();
476 
477  selector.select(item, selection, TColor::GetColor(m_cw->GetColor()));
478  }
479  catch( const FWExpressionException& e)
480  {
481  m_selectError->AddLine(e.what().c_str());
482  m_selectError->Update();
483  if (e.column() > -1)
484  {
485  m_selectExpressionEntry->SetCursorPosition(e.column());
486  }
487  }
488  }
489 }
const std::string & what() const
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
selection
main part
Definition: corrVsCorr.py:98
void select(FWEventItem *iItem, const std::string &iExpression, Color_t c=-1) const
FWSelectionManager * selectionManager() const
Definition: FWEventItem.h:134
TGTextView * m_selectError
Definition: CmsShowEDI.h:129
FWEventItem * m_item
Definition: CmsShowEDI.h:122
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
void CmsShowEDI::selectAll ( )

Definition at line 492 of file CmsShowEDI.cc.

References FWEventItem::changeManager(), i, m_item, FWEventItem::select(), and FWEventItem::size().

493 {
494  FWChangeSentry sentry(*(m_item->changeManager()));
495  for (int i = 0; i < static_cast<int>(m_item->size()); i++)
496  {
497  m_item->select(i);
498  }
499 }
int i
Definition: DBlmapReader.cc:9
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:131
size_t size() const
Definition: FWEventItem.cc:548
void select(int iIndex) const
Definition: FWEventItem.cc:251
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::show ( FWDataCategories  iToView)
void CmsShowEDI::toggleItemVisible ( Bool_t  on = kTRUE)

See changeItemColor for additional details.

Definition at line 426 of file CmsShowEDI.cc.

References FWEventItem::defaultDisplayProperties(), m_item, FWEventItem::setDefaultDisplayProperties(), and FWDisplayProperties::setIsVisible().

426  {
428  changeProperties.setIsVisible(on);
429  m_item->setDefaultDisplayProperties(changeProperties);
430 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:156
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void setIsVisible(bool iSet)
void CmsShowEDI::updateDisplay ( )

Definition at line 330 of file CmsShowEDI.cc.

References FWDisplayProperties::color(), FWEventItem::defaultDisplayProperties(), FWDisplayProperties::isVisible(), m_colorSelectWidget, m_isVisibleButton, m_item, m_opacitySlider, FWColorSelect::SetColorByIndex(), and FWDisplayProperties::transparency().

Referenced by fillEDIFrame().

330  {
331  //std::cout<<"Updating display"<<std::endl;
333  m_colorSelectWidget->SetColorByIndex(props.color(),kFALSE);
334  m_opacitySlider->SetPosition(100 - props.transparency());
335  m_isVisibleButton->SetState(props.isVisible() ? kButtonDown : kButtonUp, kFALSE);
336 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:451
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:109
void SetColorByIndex(Color_t iColor)
Color_t color() const
Char_t transparency() const
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::updateFilter ( )

Definition at line 365 of file CmsShowEDI.cc.

References FWEventItem::filterExpression(), m_filterExpressionEntry, and m_item.

Referenced by fillEDIFrame().

365  {
366  m_filterExpressionEntry->SetText(m_item->filterExpression().c_str());
367 }
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
const std::string & filterExpression() const
Definition: FWEventItem.cc:602
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::updateLayerControls ( )

Definition at line 339 of file CmsShowEDI.cc.

References FWEventItem::isInBack(), FWEventItem::isInFront(), FWEventItem::layer(), m_backButton, m_frontButton, m_item, and m_layerEntry.

Referenced by fillEDIFrame(), moveToBack(), moveToFront(), and moveToLayer().

340 {
341  m_backButton->SetEnabled(!m_item->isInBack());
342  m_frontButton->SetEnabled(!m_item->isInFront());
343  m_layerEntry->SetIntNumber(m_item->layer());
344 }
int layer() const
Definition: FWEventItem.cc:457
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
TGTextButton * m_backButton
Definition: CmsShowEDI.h:105
bool isInBack() const
returns true if item is behind all other items
Definition: FWEventItem.cc:478
bool isInFront() const
returns true if item is in front of all other items
Definition: FWEventItem.cc:463
FWEventItem * m_item
Definition: CmsShowEDI.h:122
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:104

Member Data Documentation

TGTextButton* CmsShowEDI::m_backButton
private

Definition at line 105 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), updateLayerControls(), and ~CmsShowEDI().

FWColorManager* CmsShowEDI::m_colorManager
private

Definition at line 131 of file CmsShowEDI.h.

FWColorSelect* CmsShowEDI::m_colorSelectWidget
private
FWColorSelect* CmsShowEDI::m_cw
private
TGTextButton* CmsShowEDI::m_deselectAllButton
private

Definition at line 115 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), and ~CmsShowEDI().

sigc::connection CmsShowEDI::m_destroyedConn
private

Definition at line 126 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

sigc::connection CmsShowEDI::m_displayChangedConn
private

Definition at line 124 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

TGTextButton* CmsShowEDI::m_filterButton
private

Definition at line 112 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), and ~CmsShowEDI().

TGTextView* CmsShowEDI::m_filterError
private

Definition at line 128 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), fillEDIFrame(), and runFilter().

FWGUIValidatingTextEntry* CmsShowEDI::m_filterExpressionEntry
private
TGTextButton* CmsShowEDI::m_frontButton
private

Definition at line 104 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), updateLayerControls(), and ~CmsShowEDI().

TGTextEntry* CmsShowEDI::m_instanceEntry
private

Definition at line 120 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), and fillEDIFrame().

TGCheckButton* CmsShowEDI::m_isVisibleButton
private

Definition at line 109 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), updateDisplay(), and ~CmsShowEDI().

FWEventItem* CmsShowEDI::m_item
private
TGNumberEntry* CmsShowEDI::m_layerEntry
private
sigc::connection CmsShowEDI::m_modelChangedConn
private

Definition at line 125 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

TGTextEntry* CmsShowEDI::m_moduleEntry
private

Definition at line 119 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), and fillEDIFrame().

TGTextEntry* CmsShowEDI::m_nameEntry
private

Definition at line 117 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), and fillEDIFrame().

TGLabel* CmsShowEDI::m_objectLabel
private

Definition at line 102 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), and fillEDIFrame().

TGHSlider* CmsShowEDI::m_opacitySlider
private

Definition at line 108 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), updateDisplay(), and ~CmsShowEDI().

TGTextEntry* CmsShowEDI::m_processEntry
private

Definition at line 121 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), and fillEDIFrame().

TGTextButton* CmsShowEDI::m_removeButton
private

Definition at line 103 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), and ~CmsShowEDI().

TGTextButton* CmsShowEDI::m_selectAllButton
private

Definition at line 114 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), and ~CmsShowEDI().

TGTextButton* CmsShowEDI::m_selectButton
private

Definition at line 113 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), and ~CmsShowEDI().

TGTextView* CmsShowEDI::m_selectError
private

Definition at line 129 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), fillEDIFrame(), and runSelection().

FWGUIValidatingTextEntry* CmsShowEDI::m_selectExpressionEntry
private

Definition at line 111 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), fillEDIFrame(), runSelection(), and ~CmsShowEDI().

FWSelectionManager* CmsShowEDI::m_selectionManager
private

Definition at line 100 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), and fillEDIFrame().

TGCompositeFrame* CmsShowEDI::m_settersFrame
private

Definition at line 133 of file CmsShowEDI.h.

Referenced by clearPBFrame(), CmsShowEDI(), and fillEDIFrame().

TGTab* CmsShowEDI::m_tabs
private

Definition at line 101 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), and show().

TGTextEntry* CmsShowEDI::m_typeEntry
private

Definition at line 118 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), disconnectAll(), and fillEDIFrame().

FWExpressionValidator* CmsShowEDI::m_validator
private

Definition at line 130 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), fillEDIFrame(), and ~CmsShowEDI().