CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
CmsShowModelPopup Class Reference

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

Inheritance diagram for CmsShowModelPopup:

Public Member Functions

void changeModelColor (Color_t iColor)
 
void changeModelOpacity (Int_t opacity=100)
 
 ClassDef (CmsShowModelPopup, 0)
 
void clicked ()
 
virtual void CloseWindow ()
 
 CmsShowModelPopup (FWDetailViewManager *, FWSelectionManager *, const FWColorManager *, const TGWindow *p=0, UInt_t w=1, UInt_t h=1)
 
void colorSetChanged ()
 
void disconnectAll ()
 
void fillModelPopup (const FWSelectionManager &iSelMgr)
 
void openDetailedView ()
 
void toggleModelVisible (Bool_t on=kTRUE)
 
void updateDisplay ()
 
virtual ~CmsShowModelPopup ()
 

Private Member Functions

 CmsShowModelPopup (const CmsShowModelPopup &)
 
const CmsShowModelPopupoperator= (const CmsShowModelPopup &)
 

Private Attributes

sigc::connection m_changes
 
const FWColorManagerm_colorManager
 
FWColorSelectm_colorSelectWidget
 
sigc::connection m_destroyedConn
 
FWDetailViewManagerm_detailViewManager
 
FWDialogBuilderm_dialogBuilder
 
TGCheckButton * m_isVisibleButton
 
sigc::connection m_modelChangedConn
 
TGLabel * m_modelLabel
 
std::set< FWModelIdm_models
 
TGHSlider * m_opacitySlider
 
std::vector< TGTextButton * > m_openDetailedViewButtons
 

Friends

class CmsShowModelPopupDetailViewButtonAdapter
 

Detailed Description

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

Usage: <usage>

Definition at line 51 of file CmsShowModelPopup.h.

Constructor & Destructor Documentation

CmsShowModelPopup::CmsShowModelPopup ( FWDetailViewManager iManager,
FWSelectionManager iSelMgr,
const FWColorManager iColorMgr,
const TGWindow *  p = 0,
UInt_t  w = 1,
UInt_t  h = 1 
)

Definition at line 54 of file CmsShowModelPopup.cc.

References FWDialogBuilder::addCheckbox(), FWDialogBuilder::addColorPicker(), FWDialogBuilder::addHSeparator(), FWDialogBuilder::addHSlider(), FWDialogBuilder::addLabel(), FWDialogBuilder::expand(), fillModelPopup(), FWDialogBuilder::indent(), m_changes, m_colorSelectWidget, m_dialogBuilder, m_isVisibleButton, m_modelLabel, m_opacitySlider, m_openDetailedViewButtons, and FWSelectionManager::selectionChanged_.

Referenced by CloseWindow().

57  :
58  TGTransientFrame(gClient->GetDefaultRoot(),p,w,h),
59  m_detailViewManager(iManager),
60  m_colorManager(iColorMgr),
62 {
63  m_changes = iSelMgr->selectionChanged_.connect(boost::bind(&CmsShowModelPopup::fillModelPopup, this, _1));
64 
65  SetCleanup(kDeepCleanup);
66 
67  TGVerticalFrame* vf = new TGVerticalFrame(this);
68  AddFrame(vf, new TGLayoutHints(kLHintsExpandX|kLHintsExpandY, 2, 2, 2, 4));
70 
71  // Do the layouting of the various widgets.
73  .addLabel(" ", 14, 1, &m_modelLabel)
74  .addLabel("Color", 8)
75  .addColorPicker(iColorMgr, &m_colorSelectWidget).expand(false)
76  .addHSeparator()
77  .addLabel("Opacity", 8)
79  .addHSeparator(2)
80  .addCheckbox("Visible", &m_isVisibleButton)
81  .addHSeparator();
82 
83  // Dummy button for detail views. Can be overidden.
84  TGTextButton *detailedViewButton = new TGTextButton(this, "Open Detailed View", 0);
85  AddFrame(detailedViewButton, new TGLayoutHints(kLHintsExpandX, 4, 4, 4, 4));
86  m_openDetailedViewButtons.push_back(detailedViewButton);
87 
88  m_colorSelectWidget->Connect("ColorChosen(Color_t)", "CmsShowModelPopup", this, "changeModelColor(Color_t)");
89  m_isVisibleButton->Connect("Toggled(Bool_t)", "CmsShowModelPopup", this, "toggleModelVisible(Bool_t)");
90  m_opacitySlider->Connect("PositionChanged(Int_t)", "CmsShowModelPopup",
91  this, "changeModelOpacity(Int_t)");
92 
93  SetWindowName("Object Controller");
94  MapSubwindows();
95  Resize(GetDefaultSize());
96  Layout();
97 
98  fillModelPopup(*iSelMgr);
99 }
FWDialogBuilder & addHSlider(size_t size, TGHSlider **out=0)
const double w
Definition: UKUtility.cc:23
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
FWDialogBuilder & addLabel(const char *text, size_t fontSize=12, size_t weight=0, TGLabel **out=0)
sigc::connection m_changes
TGCheckButton * m_isVisibleButton
FWDialogBuilder & addHSeparator(size_t horizontalPadding=4, size_t verticalPadding=3)
const FWColorManager * m_colorManager
std::vector< TGTextButton * > m_openDetailedViewButtons
FWDialogBuilder & expand(size_t expandX=true, size_t expandY=false)
sigc::signal< void, const FWSelectionManager & > selectionChanged_
FWDialogBuilder * m_dialogBuilder
FWDetailViewManager * m_detailViewManager
void fillModelPopup(const FWSelectionManager &iSelMgr)
FWDialogBuilder & addCheckbox(const char *text, TGCheckButton **out=0)
TGHSlider * m_opacitySlider
FWDialogBuilder & indent(int left=2, int right=-1)
FWColorSelect * m_colorSelectWidget
FWDialogBuilder & addColorPicker(const FWColorManager *manager, FWColorSelect **out=0)
CmsShowModelPopup::~CmsShowModelPopup ( )
virtual

Definition at line 106 of file CmsShowModelPopup.cc.

References disconnectAll(), m_changes, m_colorSelectWidget, m_isVisibleButton, and m_opacitySlider.

107 {
108  m_changes.disconnect();
109  m_colorSelectWidget->Disconnect("ColorSelected(Pixel_t)", this, "changeModelColor(Pixel_t)");
110  m_opacitySlider->Disconnect("PositionChanged(Int_t)", this, "changeModelOpacity(Int_t)");
111  m_isVisibleButton->Disconnect("Toggled(Bool_t)", this, "toggleModelVisible(Bool_t)");
112  disconnectAll();
113 }
sigc::connection m_changes
TGCheckButton * m_isVisibleButton
TGHSlider * m_opacitySlider
FWColorSelect * m_colorSelectWidget
CmsShowModelPopup::CmsShowModelPopup ( const CmsShowModelPopup )
private

Member Function Documentation

void CmsShowModelPopup::changeModelColor ( Color_t  color)

Change the color of the selected objects.

NOTES:

  • Notice that the whole thing works with a "Copy old properties and modify" paradigm.

Definition at line 317 of file CmsShowModelPopup.cc.

References FWEventItem::ModelInfo::displayProperties(), MillePedeFileConverter_cfg::e, mps_fire::i, info(), m_models, and FWDisplayProperties::setColor().

Referenced by CloseWindow().

318 {
319  if (m_models.empty())
320  return;
321 
322  FWChangeSentry sentry(*(m_models.begin()->item()->changeManager()));
323  for (std::set<FWModelId>::iterator i = m_models.begin(), e = m_models.end(); i != e; ++i)
324  {
325  const FWEventItem::ModelInfo &info = i->item()->modelInfo(i->index());
326  FWDisplayProperties changeProperties = info.displayProperties();
327  changeProperties.setColor(color);
328  i->item()->setDisplayProperties(i->index(), changeProperties);
329  }
330 }
void setColor(Color_t iColor)
static const TGPicture * info(bool iBackgroundIsBlack)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
std::set< FWModelId > m_models
void CmsShowModelPopup::changeModelOpacity ( Int_t  opacity = 100)

Change the opacity of the selected objects. See above in changeModelColor for additional notes.

Definition at line 336 of file CmsShowModelPopup.cc.

References FWEventItem::ModelInfo::displayProperties(), MillePedeFileConverter_cfg::e, mps_fire::i, info(), m_models, and FWDisplayProperties::setTransparency().

Referenced by CloseWindow().

337 {
338  if (m_models.empty())
339  return;
340 
341  FWChangeSentry sentry(*(m_models.begin()->item()->changeManager()));
342  for (std::set<FWModelId>::iterator i = m_models.begin(), e = m_models.end(); i != e; ++i)
343  {
344  const FWEventItem::ModelInfo &info = i->item()->modelInfo(i->index());
345  FWDisplayProperties changeProperties = info.displayProperties();
346  changeProperties.setTransparency(100 - opacity);
347  i->item()->setDisplayProperties(i->index(), changeProperties);
348  }
349 }
static const TGPicture * info(bool iBackgroundIsBlack)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
std::set< FWModelId > m_models
void setTransparency(Char_t transparency)
CmsShowModelPopup::ClassDef ( CmsShowModelPopup  ,
 
)

Referenced by CloseWindow().

void CmsShowModelPopup::clicked ( )

Definition at line 378 of file CmsShowModelPopup.cc.

References fwrapper::cs, FWDetailViewManager::detailViewsFor(), m_detailViewManager, m_models, and FWDetailViewManager::openDetailViewFor().

Referenced by CloseWindow().

379 {
380  TGTextButton *cs = static_cast<TGTextButton *>(gTQSender);
381  int iIndex = cs->WidgetId();
382  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*(m_models.begin()));
383 
384  m_detailViewManager->openDetailViewFor( *(m_models.begin()), *(viewChoices.begin()+iIndex) );
385 
386 }
auto_ptr< ClusterSequence > cs
std::set< FWModelId > m_models
std::vector< std::string > detailViewsFor(const FWModelId &) const
void openDetailViewFor(const FWModelId &, const std::string &)
FWDetailViewManager * m_detailViewManager
virtual void CmsShowModelPopup::CloseWindow ( )
inlinevirtual
void CmsShowModelPopup::colorSetChanged ( )

Definition at line 271 of file CmsShowModelPopup.cc.

References FWDisplayProperties::color(), FWEventItem::ModelInfo::displayProperties(), MillePedeFileConverter_cfg::e, mps_fire::i, info(), m_colorSelectWidget, m_models, AlCaHLTBitMon_ParallelJobs::p, and FWColorSelect::SetColorByIndex().

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

272 {
273  for (std::set<FWModelId>::iterator i = m_models.begin(), e = m_models.end();
274  i != e; ++i)
275  {
276  const FWEventItem::ModelInfo &info = i->item()->modelInfo(i->index());
277  const FWDisplayProperties &p = info.displayProperties();
279  }
280 }
static const TGPicture * info(bool iBackgroundIsBlack)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
void SetColorByIndex(Color_t iColor)
Color_t color() const
std::set< FWModelId > m_models
FWColorSelect * m_colorSelectWidget
void CmsShowModelPopup::disconnectAll ( )

This is invoked to when no object is selected and sets the dialog in a disabled look.

Definition at line 286 of file CmsShowModelPopup.cc.

References MillePedeFileConverter_cfg::e, mps_fire::i, m_colorSelectWidget, m_destroyedConn, m_isVisibleButton, m_modelChangedConn, m_modelLabel, m_opacitySlider, m_openDetailedViewButtons, and FWColorSelect::SetColorByIndex().

Referenced by CloseWindow(), fillModelPopup(), and ~CmsShowModelPopup().

286  {
287  m_modelChangedConn.disconnect();
288  m_destroyedConn.disconnect();
289  // m_item = 0;
290  // m_model = 0;
291  m_modelLabel->SetText("No object selected");
292  m_colorSelectWidget->SetColorByIndex(kRed,kFALSE);
293  m_isVisibleButton->SetDisabledAndSelected(kTRUE);
294  m_colorSelectWidget->SetEnabled(kFALSE);
295  m_opacitySlider->SetEnabled(kFALSE);
296  m_isVisibleButton->SetEnabled(kFALSE);
297  m_openDetailedViewButtons.front()->SetEnabled(kFALSE);
298  m_openDetailedViewButtons.front()->SetText("Open Detail View ...");
299  assert(!m_openDetailedViewButtons.empty());
300  for(size_t i = 1, e = m_openDetailedViewButtons.size(); i != e; ++i)
301  {
302  TGCompositeFrame* cf = (TGCompositeFrame*)m_openDetailedViewButtons[i]->GetParent();
303  cf->HideFrame(m_openDetailedViewButtons[i]);
304  }
305 
306 
307 }
sigc::connection m_destroyedConn
void SetColorByIndex(Color_t iColor)
sigc::connection m_modelChangedConn
TGCheckButton * m_isVisibleButton
std::vector< TGTextButton * > m_openDetailedViewButtons
TGHSlider * m_opacitySlider
FWColorSelect * m_colorSelectWidget
void CmsShowModelPopup::fillModelPopup ( const FWSelectionManager iSelMgr)

this updates the dialog when selection changes. It also handles multiple Selections by updating only the widgets which have non controversial (i.e. different across selected objects) values.

Definition at line 135 of file CmsShowModelPopup.cc.

References FWEventItem::changed_, FWDisplayProperties::color(), FWDetailViewManager::detailViewsFor(), disconnectAll(), FWEventItem::ModelInfo::displayProperties(), MillePedeFileConverter_cfg::e, FWEventItem::goingToBeDestroyed_, mps_fire::i, diffTreeTool::index, info(), FWDisplayProperties::isVisible(), m_colorSelectWidget, m_destroyedConn, m_detailViewManager, m_isVisibleButton, m_modelChangedConn, m_modelLabel, m_models, m_opacitySlider, m_openDetailedViewButtons, FWEventItem::modelInfo(), FWEventItem::modelName(), FWEventItem::name(), alignCSCRings::s, FWSelectionManager::selected(), FWColorSelect::SetColorByIndex(), FWDisplayProperties::transparency(), and updateDisplay().

Referenced by CloseWindow(), and CmsShowModelPopup().

136 {
137  disconnectAll();
138  // Handles the case in which the selection is empty.
139  if (iSelMgr.selected().empty())
140  return;
141 
142  // Handle the case in which the selection is not empty.
143  bool multipleNames = false, multipleColors = false, multipleVis = false,
144  multipleTransparecy = false;
145 
146  m_models = iSelMgr.selected();
147  std::set<FWModelId>::const_iterator id = m_models.begin();
148  const FWEventItem* item = id->item();
149  const FWEventItem::ModelInfo info = item->modelInfo(id->index());
150  const FWDisplayProperties &props = info.displayProperties();
151 
152  // The old logic was broken here. It was enought that the last item
153  // was the same as the first one, and all of them would have been considered
154  // equal. This should fix it. The idea is that if any of the elements in
155  // models in [1, N] are different from the first, then we consider the
156  // set with multipleXYZ.
157  for (std::set<FWModelId>::const_iterator i = ++(m_models.begin()),
158  e = m_models.end(); i != e; ++i)
159  {
160  const FWEventItem::ModelInfo &nextInfo = i->item()->modelInfo(i->index());
161  const FWDisplayProperties &nextProps = nextInfo.displayProperties();
162 
163  multipleNames = multipleNames || (item->name() != i->item()->name());
164  multipleColors = multipleColors || (props.color() != nextProps.color());
165  multipleVis = multipleVis || (props.isVisible() != nextProps.isVisible());
166  multipleTransparecy = multipleTransparecy
167  || (props.transparency() != nextProps.transparency());
168  }
169 
170  // Handle the name.
171  std::ostringstream s;
172  if (multipleNames)
173  s << m_models.size() << " objects";
174  else
175  s << m_models.size() << " " << item->name();
176  m_modelLabel->SetText(s.str().c_str());
177 
178  if (m_models.size()==1)
179  {
180  m_modelLabel->SetText(item->modelName(id->index()).c_str());
181  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*id);
182  m_openDetailedViewButtons.front()->SetEnabled(viewChoices.size()>0);
183  //be sure we show just the right number of buttons
184  if(viewChoices.size() > m_openDetailedViewButtons.size())
185  {
186  for(size_t i = 0, e = m_openDetailedViewButtons.size(); i != e; ++i)
187  {
188  // printf("show existing buttons\n");
189  TGCompositeFrame* cf = (TGCompositeFrame*)m_openDetailedViewButtons[i]->GetParent();
190  cf->ShowFrame(m_openDetailedViewButtons[i]);
191  }
192 
193  //now we make additional buttons
194  TGTextButton *button;
195  for(size_t index = m_openDetailedViewButtons.size(); index < viewChoices.size(); ++index)
196  {
197  button = new TGTextButton(this, "dummy", index);
198  AddFrame(button, new TGLayoutHints(kLHintsExpandX, 4, 4, 4, 4));
199  TGCompositeFrame* cf = (TGCompositeFrame*)button->GetParent();
200  cf->MapWindow();
201  cf->MapSubwindows();
202  m_openDetailedViewButtons.push_back(button);
203 
204  button->Connect("Clicked()", "CmsShowModelPopup", this, "clicked()");
205  }
206  }
207  else if (!viewChoices.empty())
208  {
209  // printf("show button subset %d \n", viewChoices.size());
210  for (size_t i = 0, e = viewChoices.size(); i != e; ++i)
211  {
212  TGCompositeFrame* cf = (TGCompositeFrame*)m_openDetailedViewButtons[i]->GetParent();
213  cf->ShowFrame(m_openDetailedViewButtons[i]);
214  }
215  }
216 
217  //set the names
218  for (size_t i = 0, e = viewChoices.size(); i != e; ++i)
219  {
220  if ( viewChoices[i][0] == '!') {
221  m_openDetailedViewButtons[i]->SetEnabled(false);
222  m_openDetailedViewButtons[i]->SetText(("Open " + viewChoices[i].substr(1) + " Detail View ...").c_str());
223 
224  }
225  else {
226  m_openDetailedViewButtons[i]->SetText(("Open " + viewChoices[i] + " Detail View ...").c_str());
227  m_openDetailedViewButtons[i]->SetEnabled(true);
228  }
229  }
230  }
231 
232  // Set the various widgets.
233  m_colorSelectWidget->SetColorByIndex(props.color(), kFALSE);
234  m_opacitySlider->SetPosition(100 - props.transparency());
235  m_isVisibleButton->SetDisabledAndSelected(props.isVisible());
236 
237  m_opacitySlider->SetEnabled(kTRUE);
238  m_colorSelectWidget->SetEnabled(kTRUE);
239  m_isVisibleButton->SetEnabled(kTRUE);
240 
241  m_modelChangedConn = item->changed_.connect(boost::bind(&CmsShowModelPopup::updateDisplay, this));
242  m_destroyedConn = item->goingToBeDestroyed_.connect(boost::bind(&CmsShowModelPopup::disconnectAll, this));
243 
244  Resize(GetDefaultSize());
245  Layout();
246 }
const std::set< FWModelId > & selected() const
static const TGPicture * info(bool iBackgroundIsBlack)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
sigc::connection m_destroyedConn
void SetColorByIndex(Color_t iColor)
std::string modelName(int iIndex) const
Definition: FWEventItem.cc:576
const std::string & name() const
Definition: FWEventItem.cc:502
FWItemChangeSignal goingToBeDestroyed_
Definition: FWEventItem.h:219
sigc::connection m_modelChangedConn
Color_t color() const
TGCheckButton * m_isVisibleButton
Char_t transparency() const
std::set< FWModelId > m_models
std::vector< std::string > detailViewsFor(const FWModelId &) const
std::vector< TGTextButton * > m_openDetailedViewButtons
FWModelChangeSignal changed_
Definition: FWEventItem.h:200
FWDetailViewManager * m_detailViewManager
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:537
TGHSlider * m_opacitySlider
FWColorSelect * m_colorSelectWidget
void CmsShowModelPopup::openDetailedView ( )

Definition at line 370 of file CmsShowModelPopup.cc.

References FWDetailViewManager::detailViewsFor(), m_detailViewManager, m_models, and FWDetailViewManager::openDetailViewFor().

Referenced by CloseWindow().

371 {
372  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*(m_models.begin()));
373 
374  m_detailViewManager->openDetailViewFor( *(m_models.begin()), viewChoices.front() );
375 }
std::set< FWModelId > m_models
std::vector< std::string > detailViewsFor(const FWModelId &) const
void openDetailViewFor(const FWModelId &, const std::string &)
FWDetailViewManager * m_detailViewManager
const CmsShowModelPopup& CmsShowModelPopup::operator= ( const CmsShowModelPopup )
private

Referenced by CloseWindow().

void CmsShowModelPopup::toggleModelVisible ( Bool_t  on = kTRUE)

Change (not toggle actually) the visibility of selected objects. See changeModelColor for additional notes.

Definition at line 355 of file CmsShowModelPopup.cc.

References FWEventItem::ModelInfo::displayProperties(), mps_fire::i, info(), m_models, and FWDisplayProperties::setIsVisible().

Referenced by CloseWindow().

355  {
356  if(m_models.empty())
357  return;
358 
359  FWChangeSentry sentry(*(m_models.begin()->item()->changeManager()));
360  for (std::set<FWModelId>::iterator i = m_models.begin(); i != m_models.end(); ++i)
361  {
362  const FWEventItem::ModelInfo &info = i->item()->modelInfo(i->index());
363  FWDisplayProperties changeProperties = info.displayProperties();
364  changeProperties.setIsVisible(on);
365  i->item()->setDisplayProperties(i->index(), changeProperties);
366  }
367 }
static const TGPicture * info(bool iBackgroundIsBlack)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
std::set< FWModelId > m_models
void setIsVisible(bool iSet)
void CmsShowModelPopup::updateDisplay ( )

Based on the actual models properties, update the GUI.

Definition at line 251 of file CmsShowModelPopup.cc.

References FWDisplayProperties::color(), FWEventItem::ModelInfo::displayProperties(), MillePedeFileConverter_cfg::e, mps_fire::i, info(), FWDisplayProperties::isVisible(), m_colorSelectWidget, m_isVisibleButton, m_models, m_opacitySlider, AlCaHLTBitMon_ParallelJobs::p, FWColorSelect::SetColorByIndex(), and FWDisplayProperties::transparency().

Referenced by CloseWindow(), and fillModelPopup().

252 {
253  for (std::set<FWModelId>::iterator i = m_models.begin(), e = m_models.end();
254  i != e; ++i)
255  {
256  const FWEventItem::ModelInfo &info = i->item()->modelInfo(i->index());
257  const FWDisplayProperties &p = info.displayProperties();
259 
260  if (p.isVisible())
261  m_isVisibleButton->SetState(kButtonDown, kFALSE);
262  else
263  m_isVisibleButton->SetState(kButtonUp, kFALSE);
264 
265  m_opacitySlider->SetPosition(100 - p.transparency());
266  }
267 }
static const TGPicture * info(bool iBackgroundIsBlack)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
void SetColorByIndex(Color_t iColor)
Color_t color() const
TGCheckButton * m_isVisibleButton
Char_t transparency() const
std::set< FWModelId > m_models
TGHSlider * m_opacitySlider
FWColorSelect * m_colorSelectWidget

Friends And Related Function Documentation

friend class CmsShowModelPopupDetailViewButtonAdapter
friend

Definition at line 55 of file CmsShowModelPopup.h.

Member Data Documentation

sigc::connection CmsShowModelPopup::m_changes
private

Definition at line 97 of file CmsShowModelPopup.h.

Referenced by CmsShowModelPopup(), and ~CmsShowModelPopup().

const FWColorManager* CmsShowModelPopup::m_colorManager
private

Definition at line 100 of file CmsShowModelPopup.h.

FWColorSelect* CmsShowModelPopup::m_colorSelectWidget
private
sigc::connection CmsShowModelPopup::m_destroyedConn
private

Definition at line 96 of file CmsShowModelPopup.h.

Referenced by disconnectAll(), and fillModelPopup().

FWDetailViewManager* CmsShowModelPopup::m_detailViewManager
private

Definition at line 99 of file CmsShowModelPopup.h.

Referenced by clicked(), fillModelPopup(), and openDetailedView().

FWDialogBuilder* CmsShowModelPopup::m_dialogBuilder
private

Definition at line 102 of file CmsShowModelPopup.h.

Referenced by CmsShowModelPopup().

TGCheckButton* CmsShowModelPopup::m_isVisibleButton
private
sigc::connection CmsShowModelPopup::m_modelChangedConn
private

Definition at line 95 of file CmsShowModelPopup.h.

Referenced by disconnectAll(), and fillModelPopup().

TGLabel* CmsShowModelPopup::m_modelLabel
private

Definition at line 88 of file CmsShowModelPopup.h.

Referenced by CmsShowModelPopup(), disconnectAll(), and fillModelPopup().

std::set<FWModelId> CmsShowModelPopup::m_models
private
TGHSlider* CmsShowModelPopup::m_opacitySlider
private
std::vector<TGTextButton*> CmsShowModelPopup::m_openDetailedViewButtons
private

Definition at line 91 of file CmsShowModelPopup.h.

Referenced by CmsShowModelPopup(), disconnectAll(), and fillModelPopup().