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() [1/2]

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

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().

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

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

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

CmsShowEDI::CmsShowEDI ( const CmsShowEDI )
private

Member Function Documentation

◆ changeItemColor()

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 410 of file CmsShowEDI.cc.

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

410  {
412  changeProperties.setColor(color);
413  m_item->setDefaultDisplayProperties(changeProperties);
414  m_cw->SetColorByIndex(color, kFALSE);
415 }
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
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
FWEventItem * m_item
Definition: CmsShowEDI.h:122

◆ changeItemOpacity()

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 431 of file CmsShowEDI.cc.

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

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

◆ changeSelectionColor()

void CmsShowEDI::changeSelectionColor ( Color_t  color)

Definition at line 488 of file CmsShowEDI.cc.

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

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

◆ ClassDefOverride()

CmsShowEDI::ClassDefOverride ( CmsShowEDI  ,
 
)

◆ clearPBFrame()

void CmsShowEDI::clearPBFrame ( )
private

Definition at line 239 of file CmsShowEDI.cc.

References f, and m_settersFrame.

Referenced by disconnectAll(), and fillEDIFrame().

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

◆ CloseWindow()

void CmsShowEDI::CloseWindow ( )
inlineoverride

Definition at line 61 of file CmsShowEDI.h.

61 { UnmapWindow(); }

◆ colorSetChanged()

void CmsShowEDI::colorSetChanged ( )

Definition at line 501 of file CmsShowEDI.cc.

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

Referenced by FWGUIManager::finishUpColorChange().

501  {
502  if (m_item) {
504  m_colorSelectWidget->SetColorByIndex(p.color(), kFALSE);
505  m_cw->SetColorByIndex(p.color(), kFALSE);
506  }
507 }
FWColorSelect * m_cw
Definition: CmsShowEDI.h:116
void SetColorByIndex(Color_t iColor)
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:107
FWEventItem * m_item
Definition: CmsShowEDI.h:122

◆ deselectAll()

void CmsShowEDI::deselectAll ( )

Definition at line 481 of file CmsShowEDI.cc.

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

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

◆ disconnectAll()

void CmsShowEDI::disconnectAll ( )

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

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

◆ fillEDIFrame()

void CmsShowEDI::fillEDIFrame ( )

Definition at line 250 of file CmsShowEDI.cc.

References FWEventItem::changed_, clearPBFrame(), FWEventItem::defaultDisplayProperties(), FWEventItem::defaultDisplayPropertiesChanged_, disconnectAll(), FWEventItem::filterExpression(), FWEventItem::getConfig(), FWEventItem::goingToBeDestroyed_, 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(), FWEventItem::type(), updateDisplay(), updateFilter(), and updateLayerControls().

Referenced by CmsShowEDI().

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

◆ moveToBack()

void CmsShowEDI::moveToBack ( )

Definition at line 349 of file CmsShowEDI.cc.

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

349  {
350  m_item->moveToBack();
352 }
void moveToBack()
Definition: FWEventItem.cc:299
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:344

◆ moveToFront()

void CmsShowEDI::moveToFront ( )

Definition at line 353 of file CmsShowEDI.cc.

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

353  {
354  m_item->moveToFront();
356 }
void moveToFront()
Definition: FWEventItem.cc:278
FWEventItem * m_item
Definition: CmsShowEDI.h:122
void updateLayerControls()
Definition: CmsShowEDI.cc:344

◆ moveToLayer()

void CmsShowEDI::moveToLayer ( Long_t  )

Definition at line 357 of file CmsShowEDI.cc.

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

357  {
358  m_item->moveToLayer(static_cast<Int_t>(m_layerEntry->GetIntNumber()));
360 }
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:344

◆ operator=()

const CmsShowEDI& CmsShowEDI::operator= ( const CmsShowEDI )
private

◆ removeItem()

void CmsShowEDI::removeItem ( )

Definition at line 313 of file CmsShowEDI.cc.

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

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

◆ runFilter()

void CmsShowEDI::runFilter ( )

Definition at line 437 of file CmsShowEDI.cc.

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

437  {
438  const std::string filter(m_filterExpressionEntry->GetText());
439  if (m_item != nullptr) {
440  try {
441  m_filterError->Clear();
443  } catch (const FWExpressionException& e) {
444  m_filterError->AddLine(e.what().c_str());
445  m_filterError->Update();
446  if (e.column() > -1) {
447  m_filterExpressionEntry->SetCursorPosition(e.column());
448  }
449  }
450  }
451 }
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

◆ runSelection()

void CmsShowEDI::runSelection ( )

Definition at line 453 of file CmsShowEDI.cc.

References MillePedeFileConverter_cfg::e, B2GTnPMonitor_cfi::item, m_cw, m_item, m_selectError, m_selectExpressionEntry, corrVsCorr::selection, collectionMerger::selector, and AlCaHLTBitMon_QueryRunRegistry::string.

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

◆ selectAll()

void CmsShowEDI::selectAll ( )

Definition at line 475 of file CmsShowEDI.cc.

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

475  {
476  FWChangeSentry sentry(*(m_item->changeManager()));
477  for (int i = 0; i < static_cast<int>(m_item->size()); i++) {
478  m_item->select(i);
479  }
480 }
size_t size() const
Definition: FWEventItem.cc:457
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:123
void select(int iIndex) const
Definition: FWEventItem.cc:224
FWEventItem * m_item
Definition: CmsShowEDI.h:122

◆ show()

void CmsShowEDI::show ( FWDataCategories  iToView)

Definition at line 498 of file CmsShowEDI.cc.

References m_tabs.

Referenced by FWGUIManager::showEDIFrame().

498 { m_tabs->SetTab(iToView); }
TGTab * m_tabs
Definition: CmsShowEDI.h:101

◆ toggleItemVisible()

void CmsShowEDI::toggleItemVisible ( Bool_t  on = kTRUE)

See changeItemColor for additional details.

Definition at line 418 of file CmsShowEDI.cc.

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

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

◆ updateDisplay()

void CmsShowEDI::updateDisplay ( )

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

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

◆ updateFilter()

void CmsShowEDI::updateFilter ( )

Definition at line 362 of file CmsShowEDI.cc.

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

Referenced by fillEDIFrame().

362 { 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

◆ updateLayerControls()

void CmsShowEDI::updateLayerControls ( )

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

344  {
345  m_backButton->SetEnabled(!m_item->isInBack());
346  m_frontButton->SetEnabled(!m_item->isInFront());
347  m_layerEntry->SetIntNumber(m_item->layer());
348 }
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
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:106
TGTextButton * m_backButton
Definition: CmsShowEDI.h:105
int layer() const
Definition: FWEventItem.cc:405
FWEventItem * m_item
Definition: CmsShowEDI.h:122
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:104

Member Data Documentation

◆ m_backButton

TGTextButton* CmsShowEDI::m_backButton
private

Definition at line 105 of file CmsShowEDI.h.

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

◆ m_colorManager

FWColorManager* CmsShowEDI::m_colorManager
private

Definition at line 131 of file CmsShowEDI.h.

◆ m_colorSelectWidget

FWColorSelect* CmsShowEDI::m_colorSelectWidget
private

◆ m_cw

FWColorSelect* CmsShowEDI::m_cw
private

◆ m_deselectAllButton

TGTextButton* CmsShowEDI::m_deselectAllButton
private

Definition at line 115 of file CmsShowEDI.h.

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

◆ m_destroyedConn

sigc::connection CmsShowEDI::m_destroyedConn
private

Definition at line 126 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

◆ m_displayChangedConn

sigc::connection CmsShowEDI::m_displayChangedConn
private

Definition at line 124 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

◆ m_filterButton

TGTextButton* CmsShowEDI::m_filterButton
private

Definition at line 112 of file CmsShowEDI.h.

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

◆ m_filterError

TGTextView* CmsShowEDI::m_filterError
private

Definition at line 128 of file CmsShowEDI.h.

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

◆ m_filterExpressionEntry

FWGUIValidatingTextEntry* CmsShowEDI::m_filterExpressionEntry
private

◆ m_frontButton

TGTextButton* CmsShowEDI::m_frontButton
private

Definition at line 104 of file CmsShowEDI.h.

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

◆ m_instanceEntry

TGTextEntry* CmsShowEDI::m_instanceEntry
private

Definition at line 120 of file CmsShowEDI.h.

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

◆ m_isVisibleButton

TGCheckButton* CmsShowEDI::m_isVisibleButton
private

Definition at line 109 of file CmsShowEDI.h.

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

◆ m_item

FWEventItem* CmsShowEDI::m_item
private

◆ m_layerEntry

TGNumberEntry* CmsShowEDI::m_layerEntry
private

◆ m_modelChangedConn

sigc::connection CmsShowEDI::m_modelChangedConn
private

Definition at line 125 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

◆ m_moduleEntry

TGTextEntry* CmsShowEDI::m_moduleEntry
private

Definition at line 119 of file CmsShowEDI.h.

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

◆ m_nameEntry

TGTextEntry* CmsShowEDI::m_nameEntry
private

Definition at line 117 of file CmsShowEDI.h.

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

◆ m_objectLabel

TGLabel* CmsShowEDI::m_objectLabel
private

Definition at line 102 of file CmsShowEDI.h.

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

◆ m_opacitySlider

TGHSlider* CmsShowEDI::m_opacitySlider
private

Definition at line 108 of file CmsShowEDI.h.

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

◆ m_processEntry

TGTextEntry* CmsShowEDI::m_processEntry
private

Definition at line 121 of file CmsShowEDI.h.

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

◆ m_removeButton

TGTextButton* CmsShowEDI::m_removeButton
private

Definition at line 103 of file CmsShowEDI.h.

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

◆ m_selectAllButton

TGTextButton* CmsShowEDI::m_selectAllButton
private

Definition at line 114 of file CmsShowEDI.h.

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

◆ m_selectButton

TGTextButton* CmsShowEDI::m_selectButton
private

Definition at line 113 of file CmsShowEDI.h.

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

◆ m_selectError

TGTextView* CmsShowEDI::m_selectError
private

Definition at line 129 of file CmsShowEDI.h.

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

◆ m_selectExpressionEntry

FWGUIValidatingTextEntry* CmsShowEDI::m_selectExpressionEntry
private

Definition at line 111 of file CmsShowEDI.h.

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

◆ m_selectionManager

FWSelectionManager* CmsShowEDI::m_selectionManager
private

Definition at line 100 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), and fillEDIFrame().

◆ m_settersFrame

TGCompositeFrame* CmsShowEDI::m_settersFrame
private

Definition at line 133 of file CmsShowEDI.h.

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

◆ m_tabs

TGTab* CmsShowEDI::m_tabs
private

Definition at line 101 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), and show().

◆ m_typeEntry

TGTextEntry* CmsShowEDI::m_typeEntry
private

Definition at line 118 of file CmsShowEDI.h.

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

◆ m_validator

FWExpressionValidator* CmsShowEDI::m_validator
private

Definition at line 130 of file CmsShowEDI.h.

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