CMS 3D CMS Logo

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)
 
 ClassDefOverride (CmsShowEDI, 0)
 
void CloseWindow () override
 
 CmsShowEDI (const TGWindow *p=nullptr, UInt_t w=1, UInt_t h=1, FWSelectionManager *selMgr=nullptr, FWColorManager *colorMgr=nullptr)
 
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 ()
 
 ~CmsShowEDI () override
 

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 52 of file CmsShowEDI.h.

Constructor & Destructor Documentation

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

Definition at line 63 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().

Referenced by CloseWindow().

64  : TGTransientFrame(gClient->GetDefaultRoot(), p, w, h),
65  m_item(nullptr),
67  m_colorManager(colorMgr),
68  m_settersFrame(nullptr) {
69  m_selectionManager = selMgr;
70  SetCleanup(kDeepCleanup);
71 
73 
74  TGVerticalFrame* vf = new TGVerticalFrame(this);
75  AddFrame(vf, new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 0, 0, 0, 0));
76  FWDialogBuilder builder(vf, nullptr, true);
77 
78  builder.indent(0)
79  .expand(true, false)
80  .addLabel(" ", 14, 2, &m_objectLabel)
81  // .vSpacer()
82  .tabs(&m_tabs)
83  .beginTab("Graphics")
84  .indent(3)
85  .addLabel("Color", 8)
86  .addColorPicker(colorMgr, &m_colorSelectWidget)
87  .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)
96  .floatLeft()
97  .expand(false)
98  .addNumberEntry(
99  0.0, 4, TGNumberFormat::kNESInteger, FWEventItem::minLayerValue(), FWEventItem::maxLayerValue(), &m_layerEntry)
100  .expand(false)
101  .floatLeft()
102  .addTextButton("To front", &m_frontButton)
103  .expand(false)
104  .vSpacer()
105  .addHSeparator()
106  .endTab()
107  .beginTab("Filter")
108  .indent(3)
109  .addLabel("Expression", 8)
110  .addValidatingTextEntry(nullptr, &m_filterExpressionEntry)
111  .floatLeft()
112  .addTextButton("Filter", &m_filterButton)
113  .expand(false)
114  .addTextView("", &m_filterError)
115  .vSpacer()
116  .endTab()
117  .beginTab("Select")
118  .indent(3)
119  .addLabel("Expression", 8)
120  .addValidatingTextEntry(nullptr, &m_selectExpressionEntry)
121  .addTextButton("Select", &m_selectButton)
122  .floatLeft()
123  .expand(false)
124  .addTextButton("Select all", &m_selectAllButton)
125  .expand(false)
126  .floatLeft()
127  .addTextButton("Unselect all", &m_deselectAllButton)
128  .expand(false)
129  .indent(3)
130  .addLabel("Color Selection", 8)
131  .addColorPicker(colorMgr, &m_cw)
132  .expand(false)
133  .addTextView("", &m_selectError)
134  .vSpacer()
135  .endTab()
136  .beginTab("Data")
137  .indent(3)
138  .addLabel("Name:", 8)
139  .addTextEntry("None", &m_nameEntry)
140  .addLabel("Labels:", 8)
141  .addLabel("Type:", 8)
142  .addTextEntry("None", &m_typeEntry)
143  .addLabel("Module:", 8)
144  .addTextEntry("None", &m_moduleEntry)
145  .addLabel("Instance:", 8)
146  .addTextEntry("None", &m_instanceEntry)
147  .addLabel("Process:", 8)
148  .addTextEntry("None", &m_processEntry)
149  .addHSeparator()
150  .addTextButton("Remove collection", &m_removeButton)
151  .expand(false)
152  .vSpacer()
153  .endTab()
154  .untabs();
155 
156  m_filterError->SetForegroundColor(gVirtualX->GetPixel(kRed));
157  m_filterError->SetBackgroundColor(TGFrame::GetDefaultFrameBackground());
158  m_filterError->ChangeOptions(0);
159 
160  m_selectError->SetForegroundColor(gVirtualX->GetPixel(kRed));
161  m_selectError->SetBackgroundColor(TGFrame::GetDefaultFrameBackground());
162  m_selectError->ChangeOptions(0);
163 
166 
167  m_colorSelectWidget->Connect("ColorChosen(Color_t)", "CmsShowEDI", this, "changeItemColor(Color_t)");
168  m_cw->Connect("ColorChosen(Color_t)", "CmsShowEDI", this, "changeSelectionColor(Color_t)");
169  m_opacitySlider->Connect("PositionChanged(Int_t)", "CmsShowEDI", this, "changeItemOpacity(Int_t)");
170  m_isVisibleButton->Connect("Toggled(Bool_t)", "CmsShowEDI", this, "toggleItemVisible(Bool_t)");
171  m_filterExpressionEntry->Connect("ReturnPressed()", "CmsShowEDI", this, "runFilter()");
172  m_filterButton->Connect("Clicked()", "CmsShowEDI", this, "runFilter()");
173  m_selectExpressionEntry->Connect("ReturnPressed()", "CmsShowEDI", this, "runSelection()");
174  m_selectButton->Connect("Clicked()", "CmsShowEDI", this, "runSelection()");
175  m_removeButton->Connect("Clicked()", "CmsShowEDI", this, "removeItem()");
176  m_selectAllButton->Connect("Clicked()", "CmsShowEDI", this, "selectAll()");
177  m_deselectAllButton->Connect("Clicked()", "CmsShowEDI", this, "deselectAll()");
178  m_frontButton->Connect("Clicked()", "CmsShowEDI", this, "moveToFront()");
179  m_backButton->Connect("Clicked()", "CmsShowEDI", this, "moveToBack()");
180  m_layerEntry->Connect("ValueSet(Long_t)", "CmsShowEDI", this, "moveToLayer(Long_t)");
181 
182  TGCompositeFrame* cf = m_tabs->GetTabContainer(0);
183  m_settersFrame = new TGVerticalFrame(cf);
184  m_settersFrame->SetCleanup(kDeepCleanup);
185  cf->AddFrame(m_settersFrame, new TGLayoutHints(kLHintsExpandX | kLHintsExpandY));
186 
187  SetWindowName("Collection Controller");
188  MapSubwindows();
189  Resize(GetDefaultSize());
190  Layout();
191 
192  fillEDIFrame();
193 }
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
void fillEDIFrame()
Definition: CmsShowEDI.cc:249
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
const double w
Definition: UKUtility.cc:23
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:40
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:38
FWColorManager * m_colorManager
Definition: CmsShowEDI.h:131
TGTextView * m_selectError
Definition: CmsShowEDI.h:129
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
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
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
CmsShowEDI::~CmsShowEDI ( )
override

Definition at line 200 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.

200  {
201  disconnectAll();
202  m_colorSelectWidget->Disconnect("ColorSelected(Pixel_t)", this, "changeItemColor(Pixel_t)");
203  m_cw->Disconnect("ColorSelected(Pixel_t)", this, "changeSelectionColor(Pixel_t)");
204  m_opacitySlider->Disconnect("PositionChanged(Int_t)", this, "changeItemColor");
205  m_isVisibleButton->Disconnect("Toggled(Bool_t)", this, "toggleItemVisible(Bool_t)");
206  m_filterExpressionEntry->Disconnect("ReturnPressed()", this, "runFilter()");
207  m_selectExpressionEntry->Disconnect("ReturnPressed()", this, "runSelection()");
208  m_filterButton->Disconnect("Clicked()", this, "runFilter()");
209  m_selectButton->Disconnect("Clicked()", this, "runSelection()");
210  m_selectAllButton->Disconnect("Clicked()", this, "selectAll()");
211  m_deselectAllButton->Disconnect("Clicked()", this, "deselectAll()");
212  m_removeButton->Disconnect("Clicked()", this, "removeItem()");
213  m_frontButton->Disconnect("Clicked()", this, "moveToFront()");
214  m_backButton->Disconnect("Clicked()", this, "moveToBack()");
215  m_layerEntry->Disconnect("ValueSet(Long_t)", this, "moveToLayer(Long_t)");
216  // delete m_objectLabel;
217  // delete m_colorSelectWidget;
218  // delete m_isVisibleButton;
219  delete m_validator;
220 }
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:363
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 409 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

409  {
411  changeProperties.setColor(color);
412  m_item->setDefaultDisplayProperties(changeProperties);
413  m_cw->SetColorByIndex(color, kFALSE);
414 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
void setColor(Color_t iColor)
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
void SetColorByIndex(Color_t iColor)
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:138
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 430 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

430  {
432  changeProperties.setTransparency(100 - opacity);
433  m_item->setDefaultDisplayProperties(changeProperties);
434 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:138
void setTransparency(Char_t transparency)
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::changeSelectionColor ( Color_t  color)

Definition at line 487 of file CmsShowEDI.cc.

References FWEventItem::changeManager(), FWEventItem::defaultDisplayProperties(), Calorimetry_cff::dp, mps_fire::i, m_item, FWSelectionManager::selected(), FWEventItem::selectionManager(), FWDisplayProperties::setColor(), FWEventItem::setDisplayProperties(), and contentValuesCheck::ss.

Referenced by CloseWindow().

487  {
488  FWChangeSentry sentry(*(m_item->changeManager()));
489  const std::set<FWModelId>& ss = m_item->selectionManager()->selected();
491  dp.setColor(c);
492  for (std::set<FWModelId>::const_iterator i = ss.begin(); i != ss.end(); ++i) {
493  m_item->setDisplayProperties(i->index(), dp);
494  }
495 }
const std::set< FWModelId > & selected() const
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
void setColor(Color_t iColor)
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:123
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:247
FWSelectionManager * selectionManager() const
Definition: FWEventItem.h:124
FWEventItem * m_item
Definition: CmsShowEDI.h:122
CmsShowEDI::ClassDefOverride ( CmsShowEDI  ,
 
)

Referenced by CloseWindow().

void CmsShowEDI::clearPBFrame ( )
private

Definition at line 238 of file CmsShowEDI.cc.

References f, and m_settersFrame.

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

238  {
239  if (!m_settersFrame->GetList()->IsEmpty()) {
240  // printf("remove FRAME \n");
241  TGFrameElement* el = (TGFrameElement*)m_settersFrame->GetList()->First();
242  TGFrame* f = el->fFrame;
243  f->UnmapWindow();
244  m_settersFrame->RemoveFrame(f);
245  f->DestroyWindow();
246  }
247 }
TGCompositeFrame * m_settersFrame
Definition: CmsShowEDI.h:133
double f[11][100]
void CmsShowEDI::CloseWindow ( )
inlineoverride
void CmsShowEDI::colorSetChanged ( )

Definition at line 500 of file CmsShowEDI.cc.

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

Referenced by CloseWindow(), and FWGUIManager::finishUpColorChange().

500  {
501  if (m_item) {
504  m_cw->SetColorByIndex(p.color(), kFALSE);
505  }
506 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
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 480 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

480  {
481  FWChangeSentry sentry(*(m_item->changeManager()));
482  for (int i = 0; i < static_cast<int>(m_item->size()); i++) {
483  m_item->unselect(i);
484  }
485 }
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:123
void unselect(int iIndex) const
Definition: FWEventItem.cc:215
size_t size() const
Definition: FWEventItem.cc:457
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::disconnectAll ( )

Definition at line 363 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 CloseWindow(), fillEDIFrame(), and ~CmsShowEDI().

363  {
364  m_objectLabel->SetText("No Collection Selected");
365  clearPBFrame();
366  if (nullptr != m_item) {
367  m_displayChangedConn.disconnect();
368  m_modelChangedConn.disconnect();
369  m_destroyedConn.disconnect();
370  m_item = nullptr;
372  m_opacitySlider->SetPosition(100);
373  m_isVisibleButton->SetDisabledAndSelected(kTRUE);
374  m_filterExpressionEntry->SetText(nullptr);
375  m_selectExpressionEntry->SetText(nullptr);
376  m_nameEntry->SetText(nullptr);
377  m_typeEntry->SetText(nullptr);
378  m_moduleEntry->SetText(nullptr);
379  m_instanceEntry->SetText(nullptr);
380  m_processEntry->SetText(nullptr);
381  // else m_isVisibleButton->SetState(kButtonDown, kFALSE);
382  m_colorSelectWidget->SetEnabled(kFALSE);
383  m_opacitySlider->SetEnabled(kFALSE);
384 
385  m_isVisibleButton->SetEnabled(kFALSE);
386  m_filterExpressionEntry->SetEnabled(kFALSE);
387  m_filterButton->SetEnabled(kFALSE);
388  m_selectExpressionEntry->SetEnabled(kFALSE);
389  m_selectButton->SetEnabled(kFALSE);
390  m_selectAllButton->SetEnabled(kFALSE);
391  m_deselectAllButton->SetEnabled(kFALSE);
392  m_removeButton->SetEnabled(kFALSE);
393  m_backButton->SetEnabled(kFALSE);
394  m_frontButton->SetEnabled(kFALSE);
395  m_layerEntry->SetIntNumber(0);
396  m_layerEntry->SetState(kFALSE);
397  m_layerEntry->GetNumberEntry()->SetEnabled(kFALSE);
398  m_layerEntry->GetButtonUp()->SetEnabled(kFALSE);
399  m_layerEntry->GetButtonDown()->SetEnabled(kFALSE);
400  }
401 }
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:238
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
void CmsShowEDI::fillEDIFrame ( )

Definition at line 249 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 CloseWindow(), and CmsShowEDI().

249  {
250  FWEventItem* iItem = nullptr;
251  bool multipleCollections = false;
252  if (!m_selectionManager->selectedItems().empty()) {
253  if (m_selectionManager->selectedItems().size() == 1) {
254  iItem = *(m_selectionManager->selectedItems().begin());
255  } else {
256  multipleCollections = true;
257  }
258  }
259  //m_item can be zero because we had 0 or many collections selected
260  if (nullptr == m_item || iItem != m_item) {
261  disconnectAll();
262  m_item = iItem;
263  if (nullptr != m_item) {
265  m_objectLabel->SetText(iItem->name().c_str());
267  m_opacitySlider->SetPosition(100 - p.transparency());
268  m_isVisibleButton->SetDisabledAndSelected(p.isVisible());
269  m_validator->setType(edm::TypeWithDict(*(iItem->modelType()->GetTypeInfo())));
270  m_filterExpressionEntry->SetText(iItem->filterExpression().c_str());
271  m_filterError->Clear();
272  m_selectError->Clear();
273  m_nameEntry->SetText(iItem->name().c_str());
274  m_typeEntry->SetText(iItem->type()->GetName());
275  m_moduleEntry->SetText(iItem->moduleLabel().c_str());
276  m_instanceEntry->SetText(iItem->productInstanceLabel().c_str());
277  m_processEntry->SetText(iItem->processName().c_str());
278  // else m_isVisibleButton->SetState(kButtonDown, kFALSE);
279  m_colorSelectWidget->SetEnabled(kTRUE);
280  m_opacitySlider->SetEnabled(kTRUE);
281  m_isVisibleButton->SetEnabled(kTRUE);
282  m_filterExpressionEntry->SetEnabled(kTRUE);
283  m_selectExpressionEntry->SetEnabled(kTRUE);
284  m_filterButton->SetEnabled(kTRUE);
285  m_selectButton->SetEnabled(kTRUE);
286  m_selectAllButton->SetEnabled(kTRUE);
287  m_deselectAllButton->SetEnabled(kTRUE);
288  m_cw->SetColorByIndex(p.color(), kFALSE);
289  m_cw->SetEnabled(kTRUE);
290  m_removeButton->SetEnabled(kTRUE);
292  m_layerEntry->SetState(kTRUE);
295  m_modelChangedConn = m_item->changed_.connect(boost::bind(&CmsShowEDI::updateFilter, this));
296  // m_selectionChangedConn = m_selectionManager->selectionChanged_.connect(boost::bind(&CmsShowEDI::updateSelection, this));
298 
299  clearPBFrame();
301  } else if (multipleCollections) {
302  std::ostringstream s;
303  s << m_selectionManager->selectedItems().size() << " Collections Selected";
304  m_objectLabel->SetText(s.str().c_str());
305  }
306 
307  Resize(GetDefaultSize());
308  Layout();
309  }
310 }
void populateFrame(TGCompositeFrame *frame)
FWProxyBuilderConfiguration * getConfig() const
Definition: FWEventItem.h:150
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
sigc::connection m_displayChangedConn
Definition: CmsShowEDI.h:124
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:108
void setType(const edm::TypeWithDict &)
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:435
const std::string & filterExpression() const
Definition: FWEventItem.cc:491
FWItemChangeSignal defaultDisplayPropertiesChanged_
Definition: FWEventItem.h:190
TGLabel * m_objectLabel
Definition: CmsShowEDI.h:102
FWItemChangeSignal goingToBeDestroyed_
Definition: FWEventItem.h:197
void disconnectAll()
Definition: CmsShowEDI.cc:363
const std::string & processName() const
Definition: FWEventItem.cc:444
const std::set< FWEventItem * > & selectedItems() const
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:114
void updateFilter()
Definition: CmsShowEDI.cc:361
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:442
void updateDisplay()
Definition: CmsShowEDI.cc:335
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
const TClass * type() const
Definition: FWEventItem.cc:437
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
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:178
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:112
const TClass * modelType() const
Definition: FWEventItem.cc:464
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:343
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
TGTextEntry * m_nameEntry
Definition: CmsShowEDI.h:117
void clearPBFrame()
Definition: CmsShowEDI.cc:238
const std::string & moduleLabel() const
Definition: FWEventItem.cc:441
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:113
void CmsShowEDI::moveToBack ( )

Definition at line 348 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

348  {
349  m_item->moveToBack();
351 }
void moveToBack()
Definition: FWEventItem.cc:299
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:343
void CmsShowEDI::moveToFront ( )

Definition at line 352 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

352  {
353  m_item->moveToFront();
355 }
void moveToFront()
Definition: FWEventItem.cc:278
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:343
void CmsShowEDI::moveToLayer ( Long_t  )

Definition at line 356 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

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

Referenced by CloseWindow().

void CmsShowEDI::removeItem ( )

Definition at line 312 of file CmsShowEDI.cc.

References FWEventItem::destroy(), m_item, FWEventItem::name(), and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by CloseWindow().

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

Definition at line 436 of file CmsShowEDI.cc.

References FWExpressionException::column(), MillePedeFileConverter_cfg::e, ALCARECOTkAlBeamHalo_cff::filter, m_filterError, m_filterExpressionEntry, m_item, FWEventItem::setFilterExpression(), AlCaHLTBitMon_QueryRunRegistry::string, and FWExpressionException::what().

Referenced by CloseWindow().

436  {
437  const std::string filter(m_filterExpressionEntry->GetText());
438  if (m_item != nullptr) {
439  try {
440  m_filterError->Clear();
442  } catch (const FWExpressionException& e) {
443  m_filterError->AddLine(e.what().c_str());
444  m_filterError->Update();
445  if (e.column() > -1) {
446  m_filterExpressionEntry->SetCursorPosition(e.column());
447  }
448  }
449  }
450 }
const std::string & what() const
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:110
void setFilterExpression(const std::string &)
Definition: FWEventItem.cc:180
TGTextView * m_filterError
Definition: CmsShowEDI.h:128
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void CmsShowEDI::runSelection ( )

Definition at line 452 of file CmsShowEDI.cc.

References FWSelectionManager::clearModelSelectionLeaveItem(), FWExpressionException::column(), MillePedeFileConverter_cfg::e, B2GTnPMonitor_cfi::item, m_cw, m_item, m_selectError, m_selectExpressionEntry, FWModelExpressionSelector::select(), corrVsCorr::selection, FWEventItem::selectionManager(), AlCaHLTBitMon_QueryRunRegistry::string, and FWExpressionException::what().

Referenced by CloseWindow().

452  {
453  FWModelExpressionSelector selector;
455  if (m_item != nullptr) {
456  try {
457  m_selectError->Clear();
458  //NOTE call clearModelSelectionLeaveItem so that the item does not get deselected
459  // just for safety use a copy of the pointer to m_item
462 
463  selector.select(item, selection, TColor::GetColor(m_cw->GetColor()));
464  } catch (const FWExpressionException& e) {
465  m_selectError->AddLine(e.what().c_str());
466  m_selectError->Update();
467  if (e.column() > -1) {
468  m_selectExpressionEntry->SetCursorPosition(e.column());
469  }
470  }
471  }
472 }
const std::string & what() const
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
selection
main part
Definition: corrVsCorr.py:100
FWSelectionManager * selectionManager() const
Definition: FWEventItem.h:124
TGTextView * m_selectError
Definition: CmsShowEDI.h:129
void select(FWEventItem *iItem, const std::string &iExpression, Color_t iColor=-1) const
FWEventItem * m_item
Definition: CmsShowEDI.h:122
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:111
void CmsShowEDI::selectAll ( )

Definition at line 474 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

474  {
475  FWChangeSentry sentry(*(m_item->changeManager()));
476  for (int i = 0; i < static_cast<int>(m_item->size()); i++) {
477  m_item->select(i);
478  }
479 }
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:123
size_t size() const
Definition: FWEventItem.cc:457
void select(int iIndex) const
Definition: FWEventItem.cc:224
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 417 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

417  {
419  changeProperties.setIsVisible(on);
420  m_item->setDefaultDisplayProperties(changeProperties);
421 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:138
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void setIsVisible(bool iSet)
void CmsShowEDI::updateDisplay ( )

Definition at line 335 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 CloseWindow(), and fillEDIFrame().

335  {
336  //std::cout<<"Updating display"<<std::endl;
338  m_colorSelectWidget->SetColorByIndex(props.color(), kFALSE);
339  m_opacitySlider->SetPosition(100 - props.transparency());
340  m_isVisibleButton->SetState(props.isVisible() ? kButtonDown : kButtonUp, kFALSE);
341 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
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 361 of file CmsShowEDI.cc.

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

Referenced by CloseWindow(), and fillEDIFrame().

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

Definition at line 343 of file CmsShowEDI.cc.

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

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

343  {
344  m_backButton->SetEnabled(!m_item->isInBack());
345  m_frontButton->SetEnabled(!m_item->isInFront());
346  m_layerEntry->SetIntNumber(m_item->layer());
347 }
int layer() const
Definition: FWEventItem.cc:405
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:420
bool isInFront() const
returns true if item is in front of all other items
Definition: FWEventItem.cc:407
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().