CMS 3D CMS Logo

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

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

Public Member Functions

void addViewEntry (const char *, int, bool enabled=true)
 
void chosenItem (Int_t)
 
 ClassDef (FWModelContextMenuHandler, 0)
 
void colorChangeRequested (Color_t)
 
 FWModelContextMenuHandler (FWSelectionManager *, FWDetailViewManager *, FWColorManager *, FWGUIManager *)
 
void showSelectedModelContext (Int_t iX, Int_t iY, FWViewContextMenuHandlerBase *) const
 NOTE: iX and iY are in global coordinates. More...
 
virtual ~FWModelContextMenuHandler ()
 

Private Member Functions

void createColorPopup () const
 
void createModelContext () const
 
 FWModelContextMenuHandler (const FWModelContextMenuHandler &)
 
const FWModelContextMenuHandleroperator= (const FWModelContextMenuHandler &)
 

Private Attributes

TGMenuEntry * m_afterViewSeperator
 
FWColorManagerm_colorManager
 
FWColorPopupm_colorPopup
 
FWDetailViewManagerm_detailViewManager
 
FWGUIManagerm_guiManager
 
TGPopupMenu * m_modelPopup
 
unsigned int m_nDetailViewEntries
 
unsigned int m_nViewEntries
 
FWSelectionManagerm_selectionManager
 
TGMenuEntry * m_seperator
 
FWViewContextMenuHandlerBasem_viewHander
 
TGMenuEntry * m_viewSeperator
 
Int_t m_x
 
Int_t m_y
 

Detailed Description

Description: Controls the context menus

Usage: This file is used internally by the system

Definition at line 38 of file FWModelContextMenuHandler.h.

Constructor & Destructor Documentation

FWModelContextMenuHandler::FWModelContextMenuHandler ( FWSelectionManager iSM,
FWDetailViewManager iDVM,
FWColorManager iCM,
FWGUIManager iGM 
)

Definition at line 58 of file FWModelContextMenuHandler.cc.

61  :
62 m_modelPopup(0),
63 m_colorPopup(0),
66 m_colorManager(iCM),
67 m_guiManager(iGM),
68 m_seperator(0),
71 m_x(0),
72 m_y(0),
75 m_viewHander(0)
76 {
77 }
FWSelectionManager * m_selectionManager
FWViewContextMenuHandlerBase * m_viewHander
FWDetailViewManager * m_detailViewManager
FWModelContextMenuHandler::~FWModelContextMenuHandler ( )
virtual

Definition at line 84 of file FWModelContextMenuHandler.cc.

References m_modelPopup.

85 {
86  delete m_modelPopup;
87 }
FWModelContextMenuHandler::FWModelContextMenuHandler ( const FWModelContextMenuHandler )
private

Member Function Documentation

void FWModelContextMenuHandler::addViewEntry ( const char *  iEntryName,
int  iEntryIndex,
bool  enabled = true 
)

Definition at line 207 of file FWModelContextMenuHandler.cc.

References kViewOptionsMO, m_afterViewSeperator, m_modelPopup, m_nViewEntries, and m_viewSeperator.

208 {
209  if(!m_viewSeperator) {
210  m_modelPopup->AddSeparator(m_afterViewSeperator);
211  m_viewSeperator=dynamic_cast<TGMenuEntry*>(m_modelPopup->GetListOfEntries()->Before(m_afterViewSeperator));
212  assert(0!=m_viewSeperator);
213  }
214 
215  if(static_cast<int>(m_nViewEntries) > iEntryIndex) {
216  m_modelPopup->GetEntry(iEntryIndex+kViewOptionsMO)->GetLabel()->SetString(iEntryName);
217  if(enabled)
218  m_modelPopup->EnableEntry(iEntryIndex+kViewOptionsMO);
219  else
220  m_modelPopup->DisableEntry(iEntryIndex+kViewOptionsMO);
221 
222  } else {
223  assert(static_cast<int>(m_nViewEntries) == iEntryIndex);
224  m_modelPopup->AddEntry(iEntryName,kViewOptionsMO+iEntryIndex,0,0,m_viewSeperator);
225 
226  if (enabled)
227  m_modelPopup->EnableEntry(kViewOptionsMO+iEntryIndex);
228  else
229  m_modelPopup->DisableEntry(kViewOptionsMO+iEntryIndex);
230 
231  ++m_nViewEntries;
232  }
233 
234 }
void FWModelContextMenuHandler::chosenItem ( Int_t  iChoice)

Definition at line 118 of file FWModelContextMenuHandler.cc.

References FWColorManager::backgroundColorIndex(), asciidump::cmd, create_public_lumi_plots::color, colors, gather_cfg::cout, createColorPopup(), FWDetailViewManager::detailViewsFor(), FWColorManager::fillLimitedColors(), getHLTprescales::index, FWDisplayProperties::isVisible(), FWColorManager::kBlackIndex, kOpenCollectionControllerMO, kOpenDetailViewMO, kOpenObjectControllerMO, kPrint, kSetColorMO, kSetVisibleMO, kViewOptionsMO, m_colorManager, m_colorPopup, m_detailViewManager, m_guiManager, m_selectionManager, m_viewHander, m_x, m_y, python.connectstrParser::o, FWDetailViewManager::openDetailViewFor(), FWColorPopup::PlacePopup(), FWColorPopup::ResetColors(), FWViewContextMenuHandlerBase::select(), FWSelectionManager::selected(), FWColorPopup::SetName(), FWColorPopup::SetSelection(), FWGUIManager::showEDIFrame(), and FWGUIManager::showModelPopup().

119 {
120  assert(!m_selectionManager->selected().empty());
121  switch (iChoice) {
122  case kSetVisibleMO:
123  {
124  FWModelId id = *(m_selectionManager->selected().begin());
125  const FWDisplayProperties& props = id.item()->modelInfo(id.index()).displayProperties();
126  for_each(m_selectionManager->selected().begin(),
127  m_selectionManager->selected().end(),
128  change_visibility(!props.isVisible())
129  );
130  break;
131  }
132  case kSetColorMO:
133  {
134  FWModelId id = *(m_selectionManager->selected().begin());
136  m_colorPopup->SetName("Selected");
137  std::vector<Color_t> colors;
140  m_colorPopup->SetSelection(id.item()->modelInfo(id.index()).displayProperties().color());
141  m_colorPopup->PlacePopup(m_x, m_y, m_colorPopup->GetDefaultWidth(), m_colorPopup->GetDefaultHeight());
142  break;
143  }
144  case kPrint:
145  {
146  FWModelId id = *(m_selectionManager->selected().begin());
147  Reflex::Type rtype(Reflex::Type::ByName(id.item()->modelType()->GetName()));
148  Reflex::Object o(rtype, const_cast<void *>(id.item()->modelData(id.index())));
149 
150  // void* xx = &std::cout;
151  //const std::vector<void*> j(1, xx);
152  //Reflex::Member m = rtype.FunctionMemberByName("print",Reflex::Type(Reflex::Type::ByName("void (std::ostream&)"), Reflex::CONST), 0 ,INHERITEDMEMBERS_ALSO );
153  //m.Invoke(o, 0, j);
154 
155  const char* cmd = Form("FWGUIManager::OStream() << *(%s*)%p ;", id.item()->modelType()->GetName(), (void*)id.item()->modelData(id.index()));
156  //const char* cmd = Form("*((std::ostream*)%p) << (%s*)%p ;", (void*)(&std::cout), id.item()->modelType()->GetName(), (void*)id.item()->modelData(id.index()));
157  std::cout << cmd << std::endl;
158  gROOT->ProcessLine(cmd);
159 
160 
161  break;
162  }
164  {
166  break;
167  }
169  {
171  break;
172  }
173  case kOpenDetailViewMO:
174  case kViewOptionsMO:
175  default:
176  {
177  if(iChoice>=kViewOptionsMO) {
178  assert(0!=m_viewHander);
180  }else {
181  assert(iChoice<kOpenObjectControllerMO);
182  assert(m_selectionManager->selected().size()==1);
183  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*(m_selectionManager->selected().begin()));
184  assert(0!=viewChoices.size());
186  }
187  break;
188  }
189  break;
190  }
191 }
const std::set< FWModelId > & selected() const
void showModelPopup()
FWSelectionManager * m_selectionManager
void SetName(const char *iName)
std::vector< Color_t > colors
Definition: eve_filter.cc:26
void fillLimitedColors(std::vector< Color_t > &cv) const
void showEDIFrame(int iInfoToShow=-1)
Allowed values are -1 or ones from FWDataCategories enum.
virtual void select(int iEntryIndex, const FWModelId &id, int iX, int iY)=0
void PlacePopup(Int_t x, Int_t y, UInt_t w, UInt_t h)
BackgroundColorIndex backgroundColorIndex() const
string cmd
Definition: asciidump.py:19
void ResetColors(const std::vector< Color_t > &colors, bool backgroundIsBlack=true)
void SetSelection(Color_t)
FWViewContextMenuHandlerBase * m_viewHander
std::vector< std::string > detailViewsFor(const FWModelId &) const
FWDetailViewManager * m_detailViewManager
void openDetailViewFor(const FWModelId &, const std::string &)
tuple cout
Definition: gather_cfg.py:121
FWModelContextMenuHandler::ClassDef ( FWModelContextMenuHandler  ,
 
)
void FWModelContextMenuHandler::colorChangeRequested ( Color_t  color)

Definition at line 194 of file FWModelContextMenuHandler.cc.

References m_selectionManager, FWSelectionManager::selected(), and FWDisplayProperties::setColor().

195 {
196  for(std::set<FWModelId>::const_iterator it =m_selectionManager->selected().begin(),
197  itEnd = m_selectionManager->selected().end();
198  it != itEnd;
199  ++it) {
200  FWDisplayProperties changeProperties = it->item()->modelInfo(it->index()).displayProperties();
201  changeProperties.setColor(color);
202  it->item()->setDisplayProperties(it->index(), changeProperties);
203  }
204 }
const std::set< FWModelId > & selected() const
void setColor(Color_t iColor)
FWSelectionManager * m_selectionManager
void FWModelContextMenuHandler::createColorPopup ( ) const
private

Definition at line 344 of file FWModelContextMenuHandler.cc.

References colors, FWColorManager::fillLimitedColors(), FWColorPopup::InitContent(), m_colorManager, and m_colorPopup.

Referenced by chosenItem().

345 {
346  if(0==m_colorPopup) {
347  std::vector<Color_t> colors;
349 
350  m_colorPopup = new FWColorPopup(gClient->GetDefaultRoot(), colors.front());
351  m_colorPopup->InitContent("", colors);
352  m_colorPopup->Connect("ColorSelected(Color_t)","FWModelContextMenuHandler", const_cast<FWModelContextMenuHandler*>(this), "colorChangeRequested(Color_t)");
353  }
354 }
void InitContent(const char *name, const std::vector< Color_t > &colors, bool backgroundIsBlack=true)
std::vector< Color_t > colors
Definition: eve_filter.cc:26
void fillLimitedColors(std::vector< Color_t > &cv) const
void FWModelContextMenuHandler::createModelContext ( ) const
private

Definition at line 319 of file FWModelContextMenuHandler.cc.

References kOpenCollectionControllerMO, kOpenDetailView, kOpenDetailViewMO, kOpenObjectControllerMO, kPrint, kSetColorMO, kSetVisibleMO, m_afterViewSeperator, m_modelPopup, m_nDetailViewEntries, and m_seperator.

Referenced by showSelectedModelContext().

320 {
321  if(0==m_modelPopup) {
322  m_modelPopup = new FWPopupMenu();
323 
324  m_modelPopup->AddEntry("Set Visible",kSetVisibleMO);
325  m_modelPopup->AddEntry("Set Color ...",kSetColorMO);
326  m_modelPopup->AddEntry("Print ...",kPrint);
329  m_modelPopup->AddSeparator();
330  m_seperator = dynamic_cast<TGMenuEntry*>(m_modelPopup->GetListOfEntries()->Last());
331  assert(0!=m_seperator);
332  m_modelPopup->AddEntry("Open Object Controller ...",kOpenObjectControllerMO);
333  m_afterViewSeperator = dynamic_cast<TGMenuEntry*>(m_modelPopup->GetListOfEntries()->Last());
334  m_modelPopup->AddEntry("Open Collection Controller ...",kOpenCollectionControllerMO);
335 
336  m_modelPopup->Connect("Activated(Int_t)",
337  "FWModelContextMenuHandler",
338  const_cast<FWModelContextMenuHandler*>(this),
339  "chosenItem(Int_t)");
340  }
341 }
static const char *const kOpenDetailView
const FWModelContextMenuHandler& FWModelContextMenuHandler::operator= ( const FWModelContextMenuHandler )
private
void FWModelContextMenuHandler::showSelectedModelContext ( Int_t  iX,
Int_t  iY,
FWViewContextMenuHandlerBase iHandler 
) const

NOTE: iX and iY are in global coordinates.

Definition at line 239 of file FWModelContextMenuHandler.cc.

References FWViewContextMenuHandlerBase::addTo(), createModelContext(), FWDetailViewManager::detailViewsFor(), i, getHLTprescales::index, FWDisplayProperties::isVisible(), kOpenDetailView, kOpenDetailViewMO, kPrint, kSetVisibleMO, kViewOptionsMO, m_detailViewManager, m_modelPopup, m_nDetailViewEntries, m_nViewEntries, m_selectionManager, m_seperator, m_viewHander, m_viewSeperator, m_x, m_y, python.connectstrParser::o, and FWSelectionManager::selected().

Referenced by FWGUIManager::showSelectedModelContextMenu().

240 {
241  m_viewHander=iHandler;
242  assert(!m_selectionManager->selected().empty());
244 
245  //setup the menu based on this object
246  FWModelId id = *(m_selectionManager->selected().begin());
247  const FWDisplayProperties& props = id.item()->modelInfo(id.index()).displayProperties();
248  if(props.isVisible()) {
249  m_modelPopup->CheckEntry(kSetVisibleMO);
250  }else {
251  m_modelPopup->UnCheckEntry(kSetVisibleMO);
252  }
253 
254 
255  if( m_selectionManager->selected().size()==1 ) {
256  {
257  Reflex::Type rtype(Reflex::Type::ByName(id.item()->modelType()->GetName()));
258  Reflex::Object o(rtype, const_cast<void *>(id.item()->modelData(id.index())));
259  Reflex::EMEMBERQUERY inh = Reflex::INHERITEDMEMBERS_ALSO;
260  if ( rtype.FunctionMemberByName("print",Reflex::Type(Reflex::Type::ByName("void (std::ostream&)"), Reflex::CONST), 0 , inh))
261  {
262  m_modelPopup->EnableEntry(kPrint);
263  // std::cout << "Enable " <<std::endl;
264  }
265  else
266  {
267  m_modelPopup->DisableEntry(kPrint);
268  // printf("Disable print \n");
269  }
270  }
271  //add the detail view entries
272  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*(m_selectionManager->selected().begin()));
273  if(viewChoices.size()>0) {
274  if(m_nDetailViewEntries < viewChoices.size()) {
275  for(unsigned int index = m_nDetailViewEntries;
276  index != viewChoices.size();
277  ++index) {
279  }
280  m_nDetailViewEntries=viewChoices.size();
281  }
282  const std::string kStart("Open ");
283  const std::string kEnd(" Detail View ...");
284  for(unsigned int index=0; index != viewChoices.size(); ++index) {
285  m_modelPopup->GetEntry(index+kOpenDetailViewMO)->GetLabel()->SetString((kStart+viewChoices[index]+kEnd).c_str());
286  m_modelPopup->EnableEntry(index+kOpenDetailViewMO);
287  }
288  for(unsigned int i =viewChoices.size(); i <m_nDetailViewEntries; ++i) {
289  m_modelPopup->HideEntry(kOpenDetailViewMO+i);
290  }
291 
292  } else {
293  for(unsigned int i =0; i <m_nDetailViewEntries; ++i) {
294  m_modelPopup->HideEntry(kOpenDetailViewMO+i);
295  }
296  }
297  } else {
298  for(unsigned int i =0; i <m_nDetailViewEntries; ++i) {
299  m_modelPopup->HideEntry(kOpenDetailViewMO+i);
300  }
301  }
302  //add necessary entries from the view
303  m_modelPopup->DeleteEntry(m_viewSeperator);
304  m_viewSeperator=0;
305 
306  for(unsigned int i=0; i<m_nViewEntries; ++i) {
307  m_modelPopup->HideEntry(kViewOptionsMO+i);
308  }
309  if(m_viewHander) {
310  m_viewHander->addTo(const_cast<FWModelContextMenuHandler&>(*this), *(m_selectionManager->selected().begin()));
311  }
312 
313  m_x=iX;
314  m_y=iY;
315  m_modelPopup->PlaceMenu(iX,iY,false,true);
316 }
const std::set< FWModelId > & selected() const
int i
Definition: DBlmapReader.cc:9
FWSelectionManager * m_selectionManager
static const char *const kOpenDetailView
FWViewContextMenuHandlerBase * m_viewHander
void addTo(FWModelContextMenuHandler &, const FWModelId &id)
std::vector< std::string > detailViewsFor(const FWModelId &) const
FWDetailViewManager * m_detailViewManager

Member Data Documentation

TGMenuEntry* FWModelContextMenuHandler::m_afterViewSeperator
mutableprivate

Definition at line 76 of file FWModelContextMenuHandler.h.

Referenced by addViewEntry(), and createModelContext().

FWColorManager* FWModelContextMenuHandler::m_colorManager
private

Definition at line 72 of file FWModelContextMenuHandler.h.

Referenced by chosenItem(), and createColorPopup().

FWColorPopup* FWModelContextMenuHandler::m_colorPopup
mutableprivate

Definition at line 69 of file FWModelContextMenuHandler.h.

Referenced by chosenItem(), and createColorPopup().

FWDetailViewManager* FWModelContextMenuHandler::m_detailViewManager
private

Definition at line 71 of file FWModelContextMenuHandler.h.

Referenced by chosenItem(), and showSelectedModelContext().

FWGUIManager* FWModelContextMenuHandler::m_guiManager
private

Definition at line 73 of file FWModelContextMenuHandler.h.

Referenced by chosenItem().

TGPopupMenu* FWModelContextMenuHandler::m_modelPopup
mutableprivate
unsigned int FWModelContextMenuHandler::m_nDetailViewEntries
mutableprivate

Definition at line 79 of file FWModelContextMenuHandler.h.

Referenced by createModelContext(), and showSelectedModelContext().

unsigned int FWModelContextMenuHandler::m_nViewEntries
mutableprivate

Definition at line 80 of file FWModelContextMenuHandler.h.

Referenced by addViewEntry(), and showSelectedModelContext().

FWSelectionManager* FWModelContextMenuHandler::m_selectionManager
private
TGMenuEntry* FWModelContextMenuHandler::m_seperator
mutableprivate

Definition at line 74 of file FWModelContextMenuHandler.h.

Referenced by createModelContext(), and showSelectedModelContext().

FWViewContextMenuHandlerBase* FWModelContextMenuHandler::m_viewHander
mutableprivate

Definition at line 81 of file FWModelContextMenuHandler.h.

Referenced by chosenItem(), and showSelectedModelContext().

TGMenuEntry* FWModelContextMenuHandler::m_viewSeperator
mutableprivate

Definition at line 75 of file FWModelContextMenuHandler.h.

Referenced by addViewEntry(), and showSelectedModelContext().

Int_t FWModelContextMenuHandler::m_x
mutableprivate

Definition at line 77 of file FWModelContextMenuHandler.h.

Referenced by chosenItem(), and showSelectedModelContext().

Int_t FWModelContextMenuHandler::m_y
mutableprivate

Definition at line 78 of file FWModelContextMenuHandler.h.

Referenced by chosenItem(), and showSelectedModelContext().