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

63  :
64  TGTransientFrame(gClient->GetDefaultRoot(), p, w, h),
65  m_item(nullptr),
67  m_colorManager(colorMgr),
68  m_settersFrame(nullptr)
69 {
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).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).expand(false)
87  .addHSeparator()
88  .addLabel("Opacity", 8)
89  .addHSlider(150, &m_opacitySlider)
90  .addHSeparator()
91  .addCheckbox("Visible", &m_isVisibleButton)
92  .addHSeparator()
93  .addLabel("Drawing order", 8)
94  .addTextButton("To back", &m_backButton).floatLeft().expand(false)
95  .addNumberEntry(0.0, 4, TGNumberFormat::kNESInteger,
98  &m_layerEntry).expand(false).floatLeft()
99  .addTextButton("To front", &m_frontButton).expand(false)
100  .vSpacer()
101  .addHSeparator()
102  .endTab()
103  .beginTab("Filter")
104  .indent(3)
105  .addLabel("Expression", 8)
106  .addValidatingTextEntry(nullptr, &m_filterExpressionEntry).floatLeft()
107  .addTextButton("Filter", &m_filterButton).expand(false)
108  .addTextView("", &m_filterError)
109  .vSpacer()
110  .endTab()
111  .beginTab("Select")
112  .indent(3)
113  .addLabel("Expression", 8)
114  .addValidatingTextEntry(nullptr, &m_selectExpressionEntry)
115  .addTextButton("Select", &m_selectButton).floatLeft().expand(false)
116  .addTextButton("Select all", &m_selectAllButton).expand(false).floatLeft()
117  .addTextButton("Unselect all", &m_deselectAllButton).expand(false)
118  .indent(3)
119  .addLabel("Color Selection", 8)
120  .addColorPicker(colorMgr, &m_cw).expand(false)
121  .addTextView("", &m_selectError)
122  .vSpacer()
123  .endTab()
124  .beginTab("Data")
125  .indent(3)
126  .addLabel("Name:", 8)
127  .addTextEntry("None", &m_nameEntry)
128  .addLabel("Labels:", 8)
129  .addLabel("Type:", 8)
130  .addTextEntry("None", &m_typeEntry)
131  .addLabel("Module:", 8)
132  .addTextEntry("None", &m_moduleEntry)
133  .addLabel("Instance:", 8)
134  .addTextEntry("None", &m_instanceEntry)
135  .addLabel("Process:", 8)
136  .addTextEntry("None", &m_processEntry)
137  .addHSeparator()
138  .addTextButton("Remove collection", &m_removeButton).expand(false)
139  .vSpacer()
140  .endTab()
141  .untabs();
142 
143  m_filterError->SetForegroundColor(gVirtualX->GetPixel(kRed));
144  m_filterError->SetBackgroundColor(TGFrame::GetDefaultFrameBackground());
145  m_filterError->ChangeOptions(0);
146 
147  m_selectError->SetForegroundColor(gVirtualX->GetPixel(kRed));
148  m_selectError->SetBackgroundColor(TGFrame::GetDefaultFrameBackground());
149  m_selectError->ChangeOptions(0);
150 
153 
154  m_colorSelectWidget->Connect("ColorChosen(Color_t)", "CmsShowEDI", this, "changeItemColor(Color_t)");
155  m_cw->Connect("ColorChosen(Color_t)", "CmsShowEDI", this, "changeSelectionColor(Color_t)");
156  m_opacitySlider->Connect("PositionChanged(Int_t)", "CmsShowEDI", this, "changeItemOpacity(Int_t)");
157  m_isVisibleButton->Connect("Toggled(Bool_t)", "CmsShowEDI", this, "toggleItemVisible(Bool_t)");
158  m_filterExpressionEntry->Connect("ReturnPressed()", "CmsShowEDI", this, "runFilter()");
159  m_filterButton->Connect("Clicked()", "CmsShowEDI", this, "runFilter()");
160  m_selectExpressionEntry->Connect("ReturnPressed()", "CmsShowEDI", this, "runSelection()");
161  m_selectButton->Connect("Clicked()", "CmsShowEDI", this, "runSelection()");
162  m_removeButton->Connect("Clicked()", "CmsShowEDI", this, "removeItem()");
163  m_selectAllButton->Connect("Clicked()", "CmsShowEDI", this, "selectAll()");
164  m_deselectAllButton->Connect("Clicked()", "CmsShowEDI", this, "deselectAll()");
165  m_frontButton->Connect("Clicked()","CmsShowEDI",this,"moveToFront()");
166  m_backButton->Connect("Clicked()","CmsShowEDI",this,"moveToBack()");
167  m_layerEntry->Connect("ValueSet(Long_t)","CmsShowEDI",this,"moveToLayer(Long_t)");
168 
169 
170  TGCompositeFrame* cf = m_tabs->GetTabContainer(0);
171  m_settersFrame = new TGVerticalFrame(cf);
172  m_settersFrame->SetCleanup(kDeepCleanup);
173  cf->AddFrame(m_settersFrame, new TGLayoutHints(kLHintsExpandX| kLHintsExpandY ));
174 
175  SetWindowName("Collection Controller");
176  MapSubwindows();
177  Resize(GetDefaultSize());
178  Layout();
179 
180  fillEDIFrame();
181 }
void fillEDIFrame()
Definition: CmsShowEDI.cc:241
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:107
const double w
Definition: UKUtility.cc:23
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
FWColorSelect * m_cw
Definition: CmsShowEDI.h:115
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:108
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:109
TGLabel * m_objectLabel
Definition: CmsShowEDI.h:101
TGTab * m_tabs
Definition: CmsShowEDI.h:100
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:113
static int maxLayerValue()
Definition: FWEventItem.cc:43
TGCompositeFrame * m_settersFrame
Definition: CmsShowEDI.h:132
TGTextEntry * m_instanceEntry
Definition: CmsShowEDI.h:119
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:105
TGTextButton * m_deselectAllButton
Definition: CmsShowEDI.h:114
void setValidator(FWValidatorBase *)
TGTextButton * m_backButton
Definition: CmsShowEDI.h:104
TGTextEntry * m_moduleEntry
Definition: CmsShowEDI.h:118
static int minLayerValue()
Definition: FWEventItem.cc:38
FWColorManager * m_colorManager
Definition: CmsShowEDI.h:130
TGTextView * m_selectError
Definition: CmsShowEDI.h:128
TGTextButton * m_removeButton
Definition: CmsShowEDI.h:102
FWExpressionValidator * m_validator
Definition: CmsShowEDI.h:129
TGTextView * m_filterError
Definition: CmsShowEDI.h:127
TGTextEntry * m_processEntry
Definition: CmsShowEDI.h:120
sigc::signal< void, const FWSelectionManager & > itemSelectionChanged_
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:106
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:111
FWSelectionManager * m_selectionManager
Definition: CmsShowEDI.h:99
TGTextEntry * m_typeEntry
Definition: CmsShowEDI.h:117
FWEventItem * m_item
Definition: CmsShowEDI.h:121
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:110
TGTextEntry * m_nameEntry
Definition: CmsShowEDI.h:116
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:103
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:112
CmsShowEDI::~CmsShowEDI ( )
override

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

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

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

Referenced by CloseWindow().

415  {
417  changeProperties.setColor(color);
418  m_item->setDefaultDisplayProperties(changeProperties);
419  m_cw->SetColorByIndex(color,kFALSE);
420 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
void setColor(Color_t iColor)
FWColorSelect * m_cw
Definition: CmsShowEDI.h:115
void SetColorByIndex(Color_t iColor)
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:157
FWEventItem * m_item
Definition: CmsShowEDI.h:121
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 438 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

438  {
440  changeProperties.setTransparency(100 - opacity);
441  m_item->setDefaultDisplayProperties(changeProperties);
442 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:157
void setTransparency(Char_t transparency)
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void CmsShowEDI::changeSelectionColor ( Color_t  color)

Definition at line 509 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

510 {
511  FWChangeSentry sentry(*(m_item->changeManager()));
512  const std::set<FWModelId>& ss = m_item->selectionManager()->selected();
514  dp.setColor(c);
515  for (std::set<FWModelId>::const_iterator i = ss.begin(); i != ss.end(); ++i ) {
516  m_item->setDisplayProperties(i->index(), dp);
517  }
518 }
const std::set< FWModelId > & selected() const
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
void setColor(Color_t iColor)
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:132
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:278
FWSelectionManager * selectionManager() const
Definition: FWEventItem.h:135
FWEventItem * m_item
Definition: CmsShowEDI.h:121
CmsShowEDI::ClassDefOverride ( CmsShowEDI  ,
 
)

Referenced by CloseWindow().

void CmsShowEDI::clearPBFrame ( )
private

Definition at line 227 of file CmsShowEDI.cc.

References f, and m_settersFrame.

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

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

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

530 {
531  if (m_item)
532  {
535  m_cw->SetColorByIndex(p.color(),kFALSE);
536  }
537 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
FWColorSelect * m_cw
Definition: CmsShowEDI.h:115
void SetColorByIndex(Color_t iColor)
Color_t color() const
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:106
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void CmsShowEDI::deselectAll ( )

Definition at line 499 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

500 {
501  FWChangeSentry sentry(*(m_item->changeManager()));
502  for (int i = 0; i < static_cast<int>(m_item->size()); i++)
503  {
504  m_item->unselect(i);
505  }
506 }
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:132
void unselect(int iIndex) const
Definition: FWEventItem.cc:241
size_t size() const
Definition: FWEventItem.cc:550
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void CmsShowEDI::disconnectAll ( )

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

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

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

241  {
242  FWEventItem* iItem =nullptr;
243  bool multipleCollections = false;
244  if(!m_selectionManager->selectedItems().empty()) {
245  if(m_selectionManager->selectedItems().size()==1) {
246  iItem=*(m_selectionManager->selectedItems().begin());
247  } else {
248  multipleCollections=true;
249  }
250  }
251  //m_item can be zero because we had 0 or many collections selected
252  if (nullptr == m_item || iItem != m_item) {
253  disconnectAll();
254  m_item = iItem;
255  if(nullptr != m_item) {
257  m_objectLabel->SetText(iItem->name().c_str());
259  m_opacitySlider->SetPosition(100 - p.transparency());
260  m_isVisibleButton->SetDisabledAndSelected(p.isVisible());
261  m_validator->setType(edm::TypeWithDict(*(iItem->modelType()->GetTypeInfo())));
262  m_filterExpressionEntry->SetText(iItem->filterExpression().c_str());
263  m_filterError->Clear();
264  m_selectError->Clear();
265  m_nameEntry->SetText(iItem->name().c_str());
266  m_typeEntry->SetText(iItem->type()->GetName());
267  m_moduleEntry->SetText(iItem->moduleLabel().c_str());
268  m_instanceEntry->SetText(iItem->productInstanceLabel().c_str());
269  m_processEntry->SetText(iItem->processName().c_str());
270  // else m_isVisibleButton->SetState(kButtonDown, kFALSE);
271  m_colorSelectWidget->SetEnabled(kTRUE);
272  m_opacitySlider->SetEnabled(kTRUE);
273  m_isVisibleButton->SetEnabled(kTRUE);
274  m_filterExpressionEntry->SetEnabled(kTRUE);
275  m_selectExpressionEntry->SetEnabled(kTRUE);
276  m_filterButton->SetEnabled(kTRUE);
277  m_selectButton->SetEnabled(kTRUE);
278  m_selectAllButton->SetEnabled(kTRUE);
279  m_deselectAllButton->SetEnabled(kTRUE);
280  m_cw->SetColorByIndex(p.color(),kFALSE);
281  m_cw->SetEnabled(kTRUE);
282  m_removeButton->SetEnabled(kTRUE);
284  m_layerEntry->SetState(kTRUE);
286  m_modelChangedConn = m_item->changed_.connect(boost::bind(&CmsShowEDI::updateFilter, this));
287  // m_selectionChangedConn = m_selectionManager->selectionChanged_.connect(boost::bind(&CmsShowEDI::updateSelection, this));
289 
290  clearPBFrame();
292  }
293  else if(multipleCollections) {
294  std::ostringstream s;
295  s<<m_selectionManager->selectedItems().size()<<" Collections Selected";
296  m_objectLabel->SetText(s.str().c_str());
297  }
298 
299  Resize(GetDefaultSize());
300  Layout();
301  }
302 }
void populateFrame(TGCompositeFrame *frame)
FWProxyBuilderConfiguration * getConfig() const
Definition: FWEventItem.h:169
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
sigc::connection m_displayChangedConn
Definition: CmsShowEDI.h:123
TGHSlider * m_opacitySlider
Definition: CmsShowEDI.h:107
void setType(const edm::TypeWithDict &)
FWColorSelect * m_cw
Definition: CmsShowEDI.h:115
TGCheckButton * m_isVisibleButton
Definition: CmsShowEDI.h:108
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:109
void SetColorByIndex(Color_t iColor)
const std::string & name() const
Definition: FWEventItem.cc:502
const std::string & filterExpression() const
Definition: FWEventItem.cc:604
FWItemChangeSignal defaultDisplayPropertiesChanged_
Definition: FWEventItem.h:211
TGLabel * m_objectLabel
Definition: CmsShowEDI.h:101
FWItemChangeSignal goingToBeDestroyed_
Definition: FWEventItem.h:218
void disconnectAll()
Definition: CmsShowEDI.cc:368
const std::string & processName() const
Definition: FWEventItem.cc:531
const std::set< FWEventItem * > & selectedItems() const
TGTextButton * m_selectAllButton
Definition: CmsShowEDI.h:113
void updateFilter()
Definition: CmsShowEDI.cc:363
TGCompositeFrame * m_settersFrame
Definition: CmsShowEDI.h:132
Color_t color() const
TGTextEntry * m_instanceEntry
Definition: CmsShowEDI.h:119
Char_t transparency() const
const std::string & productInstanceLabel() const
Definition: FWEventItem.cc:525
void updateDisplay()
Definition: CmsShowEDI.cc:328
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:105
const TClass * type() const
Definition: FWEventItem.cc:508
TGTextButton * m_deselectAllButton
Definition: CmsShowEDI.h:114
TGTextEntry * m_moduleEntry
Definition: CmsShowEDI.h:118
sigc::connection m_destroyedConn
Definition: CmsShowEDI.h:125
TGTextView * m_selectError
Definition: CmsShowEDI.h:128
TGTextButton * m_removeButton
Definition: CmsShowEDI.h:102
FWExpressionValidator * m_validator
Definition: CmsShowEDI.h:129
TGTextView * m_filterError
Definition: CmsShowEDI.h:127
TGTextEntry * m_processEntry
Definition: CmsShowEDI.h:120
FWColorSelect * m_colorSelectWidget
Definition: CmsShowEDI.h:106
FWModelChangeSignal changed_
Definition: FWEventItem.h:199
TGTextButton * m_filterButton
Definition: CmsShowEDI.h:111
const TClass * modelType() const
Definition: FWEventItem.cc:563
FWSelectionManager * m_selectionManager
Definition: CmsShowEDI.h:99
TGTextEntry * m_typeEntry
Definition: CmsShowEDI.h:117
FWEventItem * m_item
Definition: CmsShowEDI.h:121
sigc::connection m_modelChangedConn
Definition: CmsShowEDI.h:124
void updateLayerControls()
Definition: CmsShowEDI.cc:337
FWGUIValidatingTextEntry * m_selectExpressionEntry
Definition: CmsShowEDI.h:110
TGTextEntry * m_nameEntry
Definition: CmsShowEDI.h:116
void clearPBFrame()
Definition: CmsShowEDI.cc:227
const std::string & moduleLabel() const
Definition: FWEventItem.cc:520
TGTextButton * m_selectButton
Definition: CmsShowEDI.h:112
void CmsShowEDI::moveToBack ( )

Definition at line 344 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

345 {
346  m_item->moveToBack();
348 }
void moveToBack()
Definition: FWEventItem.cc:335
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void updateLayerControls()
Definition: CmsShowEDI.cc:337
void CmsShowEDI::moveToFront ( )

Definition at line 350 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

351 {
352  m_item->moveToFront();
354 }
void moveToFront()
Definition: FWEventItem.cc:312
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void updateLayerControls()
Definition: CmsShowEDI.cc:337
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().

357 {
358  m_item->moveToLayer(static_cast<Int_t>(m_layerEntry->GetIntNumber()));
360 }
void moveToLayer(int layer)
Definition: FWEventItem.cc:358
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:105
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void updateLayerControls()
Definition: CmsShowEDI.cc:337
const CmsShowEDI& CmsShowEDI::operator= ( const CmsShowEDI )
private

Referenced by CloseWindow().

void CmsShowEDI::removeItem ( )

Definition at line 305 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

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

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

445  {
446  const std::string filter(m_filterExpressionEntry->GetText());
447  if (m_item != nullptr) {
448  try {
449  m_filterError->Clear();
451  } catch( const FWExpressionException& e) {
452  m_filterError->AddLine(e.what().c_str());
453  m_filterError->Update();
454  if(e.column() > -1) {
455  m_filterExpressionEntry->SetCursorPosition(e.column());
456  }
457  }
458  }
459 }
const std::string & what() const
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:109
void setFilterExpression(const std::string &)
Definition: FWEventItem.cc:201
TGTextView * m_filterError
Definition: CmsShowEDI.h:127
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void CmsShowEDI::runSelection ( )

Definition at line 462 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

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

Definition at line 490 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

491 {
492  FWChangeSentry sentry(*(m_item->changeManager()));
493  for (int i = 0; i < static_cast<int>(m_item->size()); i++)
494  {
495  m_item->select(i);
496  }
497 }
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:132
size_t size() const
Definition: FWEventItem.cc:550
void select(int iIndex) const
Definition: FWEventItem.cc:252
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void CmsShowEDI::show ( FWDataCategories  iToView)
void CmsShowEDI::toggleItemVisible ( Bool_t  on = kTRUE)

See changeItemColor for additional details.

Definition at line 424 of file CmsShowEDI.cc.

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

Referenced by CloseWindow().

424  {
426  changeProperties.setIsVisible(on);
427  m_item->setDefaultDisplayProperties(changeProperties);
428 }
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
void setDefaultDisplayProperties(const FWDisplayProperties &)
Definition: FWEventItem.cc:157
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void setIsVisible(bool iSet)
void CmsShowEDI::updateDisplay ( )

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

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

Definition at line 363 of file CmsShowEDI.cc.

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

Referenced by CloseWindow(), and fillEDIFrame().

363  {
364  m_filterExpressionEntry->SetText(m_item->filterExpression().c_str());
365 }
FWGUIValidatingTextEntry * m_filterExpressionEntry
Definition: CmsShowEDI.h:109
const std::string & filterExpression() const
Definition: FWEventItem.cc:604
FWEventItem * m_item
Definition: CmsShowEDI.h:121
void CmsShowEDI::updateLayerControls ( )

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

338 {
339  m_backButton->SetEnabled(!m_item->isInBack());
340  m_frontButton->SetEnabled(!m_item->isInFront());
341  m_layerEntry->SetIntNumber(m_item->layer());
342 }
int layer() const
Definition: FWEventItem.cc:459
TGNumberEntry * m_layerEntry
Definition: CmsShowEDI.h:105
TGTextButton * m_backButton
Definition: CmsShowEDI.h:104
bool isInBack() const
returns true if item is behind all other items
Definition: FWEventItem.cc:480
bool isInFront() const
returns true if item is in front of all other items
Definition: FWEventItem.cc:465
FWEventItem * m_item
Definition: CmsShowEDI.h:121
TGTextButton * m_frontButton
Definition: CmsShowEDI.h:103

Member Data Documentation

TGTextButton* CmsShowEDI::m_backButton
private

Definition at line 104 of file CmsShowEDI.h.

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

FWColorManager* CmsShowEDI::m_colorManager
private

Definition at line 130 of file CmsShowEDI.h.

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

Definition at line 114 of file CmsShowEDI.h.

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

sigc::connection CmsShowEDI::m_destroyedConn
private

Definition at line 125 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

sigc::connection CmsShowEDI::m_displayChangedConn
private

Definition at line 123 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

TGTextButton* CmsShowEDI::m_filterButton
private

Definition at line 111 of file CmsShowEDI.h.

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

TGTextView* CmsShowEDI::m_filterError
private

Definition at line 127 of file CmsShowEDI.h.

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

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

Definition at line 103 of file CmsShowEDI.h.

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

TGTextEntry* CmsShowEDI::m_instanceEntry
private

Definition at line 119 of file CmsShowEDI.h.

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

TGCheckButton* CmsShowEDI::m_isVisibleButton
private

Definition at line 108 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 124 of file CmsShowEDI.h.

Referenced by disconnectAll(), and fillEDIFrame().

TGTextEntry* CmsShowEDI::m_moduleEntry
private

Definition at line 118 of file CmsShowEDI.h.

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

TGTextEntry* CmsShowEDI::m_nameEntry
private

Definition at line 116 of file CmsShowEDI.h.

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

TGLabel* CmsShowEDI::m_objectLabel
private

Definition at line 101 of file CmsShowEDI.h.

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

TGHSlider* CmsShowEDI::m_opacitySlider
private

Definition at line 107 of file CmsShowEDI.h.

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

TGTextEntry* CmsShowEDI::m_processEntry
private

Definition at line 120 of file CmsShowEDI.h.

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

TGTextButton* CmsShowEDI::m_removeButton
private

Definition at line 102 of file CmsShowEDI.h.

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

TGTextButton* CmsShowEDI::m_selectAllButton
private

Definition at line 113 of file CmsShowEDI.h.

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

TGTextButton* CmsShowEDI::m_selectButton
private

Definition at line 112 of file CmsShowEDI.h.

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

TGTextView* CmsShowEDI::m_selectError
private

Definition at line 128 of file CmsShowEDI.h.

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

FWGUIValidatingTextEntry* CmsShowEDI::m_selectExpressionEntry
private

Definition at line 110 of file CmsShowEDI.h.

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

FWSelectionManager* CmsShowEDI::m_selectionManager
private

Definition at line 99 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), and fillEDIFrame().

TGCompositeFrame* CmsShowEDI::m_settersFrame
private

Definition at line 132 of file CmsShowEDI.h.

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

TGTab* CmsShowEDI::m_tabs
private

Definition at line 100 of file CmsShowEDI.h.

Referenced by CmsShowEDI(), and show().

TGTextEntry* CmsShowEDI::m_typeEntry
private

Definition at line 117 of file CmsShowEDI.h.

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

FWExpressionValidator* CmsShowEDI::m_validator
private

Definition at line 129 of file CmsShowEDI.h.

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