CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWModelContextMenuHandler.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWModelContextMenuHandler
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Tue Sep 22 13:26:04 CDT 2009
11 // $Id: FWModelContextMenuHandler.cc,v 1.21 2011/06/21 05:19:22 amraktad Exp $
12 //
13 
14 // system include files
15 #include <cassert>
16 #include "TGMenu.h"
17 #include "KeySymbols.h"
18 
19 #include "Reflex/Object.h"
20 #include "Reflex/Type.h"
21 #include "TClass.h"
22 
23 // user include files
33 
34 //
35 // constants, enums and typedefs
36 //
47 };
48 
49 
50 //
51 // static data member definitions
52 //
53 static const char* const kOpenDetailView = "Open Detailed View ...";
54 
55 //
56 // constructors and destructor
57 //
59  FWDetailViewManager* iDVM,
60  FWColorManager* iCM,
61  FWGUIManager* iGM):
62 m_modelPopup(0),
63 m_colorPopup(0),
64 m_selectionManager(iSM),
65 m_detailViewManager(iDVM),
66 m_colorManager(iCM),
67 m_guiManager(iGM),
68 m_seperator(0),
69 m_viewSeperator(0),
70 m_afterViewSeperator(0),
71 m_x(0),
72 m_y(0),
73 m_nDetailViewEntries(0),
74 m_nViewEntries(0),
75 m_viewHander(0)
76 {
77 }
78 
79 // FWModelContextMenuHandler::FWModelContextMenuHandler(const FWModelContextMenuHandler& rhs)
80 // {
81 // // do actual copying here;
82 // }
83 
85 {
86  delete m_modelPopup;
87 }
88 
89 //
90 // assignment operators
91 //
92 // const FWModelContextMenuHandler& FWModelContextMenuHandler::operator=(const FWModelContextMenuHandler& rhs)
93 // {
94 // //An exception safe implementation is
95 // FWModelContextMenuHandler temp(rhs);
96 // swap(rhs);
97 //
98 // return *this;
99 // }
100 
101 //
102 // member functions
103 //
104 #include "TROOT.h"
105 namespace {
106  class change_visibility {
107  public:
108  change_visibility(bool iIsVisible): m_isVisible(iIsVisible) {}
109  void operator()(const FWModelId& iID) const {
110  FWDisplayProperties p = iID.item()->modelInfo(iID.index()).displayProperties();
111  p.setIsVisible(m_isVisible);
112  iID.item()->setDisplayProperties(iID.index(), p);
113  }
114  bool m_isVisible;
115  };
116 }
117 void
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  using namespace Reflex;
147  FWModelId id = *(m_selectionManager->selected().begin());
148  Type rtype(ROOT::Reflex::Type::ByName(id.item()->modelType()->GetName()));
149  Object o(rtype, const_cast<void *>(id.item()->modelData(id.index())));
150 
151  // void* xx = &std::cout;
152  //const std::vector<void*> j(1, xx);
153  //Member m = rtype.FunctionMemberByName("print",Type(Type::ByName("void (std::ostream&)"), CONST), 0 ,INHERITEDMEMBERS_ALSO );
154  //m.Invoke(o, 0, j);
155 
156  const char* cmd = Form("FWGUIManager::OStream() << *(%s*)%p ;", id.item()->modelType()->GetName(), (void*)id.item()->modelData(id.index()));
157  //const char* cmd = Form("*((std::ostream*)%p) << (%s*)%p ;", (void*)(&std::cout), id.item()->modelType()->GetName(), (void*)id.item()->modelData(id.index()));
158  std::cout << cmd << std::endl;
159  gROOT->ProcessLine(cmd);
160 
161 
162  break;
163  }
165  {
167  break;
168  }
170  {
172  break;
173  }
174  case kOpenDetailViewMO:
175  case kViewOptionsMO:
176  default:
177  {
178  if(iChoice>=kViewOptionsMO) {
179  assert(0!=m_viewHander);
181  }else {
182  assert(iChoice<kOpenObjectControllerMO);
183  assert(m_selectionManager->selected().size()==1);
184  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*(m_selectionManager->selected().begin()));
185  assert(0!=viewChoices.size());
187  }
188  break;
189  }
190  break;
191  }
192 }
193 
194 void
196 {
197  for(std::set<FWModelId>::const_iterator it =m_selectionManager->selected().begin(),
198  itEnd = m_selectionManager->selected().end();
199  it != itEnd;
200  ++it) {
201  FWDisplayProperties changeProperties = it->item()->modelInfo(it->index()).displayProperties();
202  changeProperties.setColor(color);
203  it->item()->setDisplayProperties(it->index(), changeProperties);
204  }
205 }
206 
207 void
208 FWModelContextMenuHandler::addViewEntry(const char* iEntryName, int iEntryIndex, bool enabled)
209 {
210  if(!m_viewSeperator) {
211  m_modelPopup->AddSeparator(m_afterViewSeperator);
212  m_viewSeperator=dynamic_cast<TGMenuEntry*>(m_modelPopup->GetListOfEntries()->Before(m_afterViewSeperator));
213  assert(0!=m_viewSeperator);
214  }
215 
216  if(static_cast<int>(m_nViewEntries) > iEntryIndex) {
217  m_modelPopup->GetEntry(iEntryIndex+kViewOptionsMO)->GetLabel()->SetString(iEntryName);
218  if(enabled)
219  m_modelPopup->EnableEntry(iEntryIndex+kViewOptionsMO);
220  else
221  m_modelPopup->DisableEntry(iEntryIndex+kViewOptionsMO);
222 
223  } else {
224  assert(static_cast<int>(m_nViewEntries) == iEntryIndex);
225  m_modelPopup->AddEntry(iEntryName,kViewOptionsMO+iEntryIndex,0,0,m_viewSeperator);
226 
227  if (enabled)
228  m_modelPopup->EnableEntry(kViewOptionsMO+iEntryIndex);
229  else
230  m_modelPopup->DisableEntry(kViewOptionsMO+iEntryIndex);
231 
232  ++m_nViewEntries;
233  }
234 
235 }
236 //
237 // const member functions
238 //
239 void
241 {
242  m_viewHander=iHandler;
243  assert(!m_selectionManager->selected().empty());
245 
246  //setup the menu based on this object
247  FWModelId id = *(m_selectionManager->selected().begin());
248  const FWDisplayProperties& props = id.item()->modelInfo(id.index()).displayProperties();
249  if(props.isVisible()) {
250  m_modelPopup->CheckEntry(kSetVisibleMO);
251  }else {
252  m_modelPopup->UnCheckEntry(kSetVisibleMO);
253  }
254 
255 
256  if( m_selectionManager->selected().size()==1 ) {
257  {
258  using namespace Reflex;
259  ROOT::Reflex::Type rtype(ROOT::Reflex::Type::ByName(id.item()->modelType()->GetName()));
260  ROOT::Reflex::Object o(rtype, const_cast<void *>(id.item()->modelData(id.index())));
261  EMEMBERQUERY inh = INHERITEDMEMBERS_ALSO;
262  if ( rtype.FunctionMemberByName("print",Type(Type::ByName("void (std::ostream&)"), CONST), 0 , inh))
263  {
264  m_modelPopup->EnableEntry(kPrint);
265  // std::cout << "Enable " <<std::endl;
266  }
267  else
268  {
269  m_modelPopup->DisableEntry(kPrint);
270  // printf("Disable print \n");
271  }
272  }
273  //add the detail view entries
274  std::vector<std::string> viewChoices = m_detailViewManager->detailViewsFor(*(m_selectionManager->selected().begin()));
275  if(viewChoices.size()>0) {
276  if(m_nDetailViewEntries < viewChoices.size()) {
277  for(unsigned int index = m_nDetailViewEntries;
278  index != viewChoices.size();
279  ++index) {
281  }
282  m_nDetailViewEntries=viewChoices.size();
283  }
284  const std::string kStart("Open ");
285  const std::string kEnd(" Detail View ...");
286  for(unsigned int index=0; index != viewChoices.size(); ++index) {
287  m_modelPopup->GetEntry(index+kOpenDetailViewMO)->GetLabel()->SetString((kStart+viewChoices[index]+kEnd).c_str());
288  m_modelPopup->EnableEntry(index+kOpenDetailViewMO);
289  }
290  for(unsigned int i =viewChoices.size(); i <m_nDetailViewEntries; ++i) {
291  m_modelPopup->HideEntry(kOpenDetailViewMO+i);
292  }
293 
294  } else {
295  for(unsigned int i =0; i <m_nDetailViewEntries; ++i) {
296  m_modelPopup->HideEntry(kOpenDetailViewMO+i);
297  }
298  }
299  } else {
300  for(unsigned int i =0; i <m_nDetailViewEntries; ++i) {
301  m_modelPopup->HideEntry(kOpenDetailViewMO+i);
302  }
303  }
304  //add necessary entries from the view
305  m_modelPopup->DeleteEntry(m_viewSeperator);
306  m_viewSeperator=0;
307 
308  for(unsigned int i=0; i<m_nViewEntries; ++i) {
309  m_modelPopup->HideEntry(kViewOptionsMO+i);
310  }
311  if(m_viewHander) {
312  m_viewHander->addTo(const_cast<FWModelContextMenuHandler&>(*this), *(m_selectionManager->selected().begin()));
313  }
314 
315  m_x=iX;
316  m_y=iY;
317  m_modelPopup->PlaceMenu(iX,iY,false,true);
318 }
319 
320 void
322 {
323  if(0==m_modelPopup) {
324  m_modelPopup = new FWPopupMenu();
325 
326  m_modelPopup->AddEntry("Set Visible",kSetVisibleMO);
327  m_modelPopup->AddEntry("Set Color ...",kSetColorMO);
328  m_modelPopup->AddEntry("Print ...",kPrint);
331  m_modelPopup->AddSeparator();
332  m_seperator = dynamic_cast<TGMenuEntry*>(m_modelPopup->GetListOfEntries()->Last());
333  assert(0!=m_seperator);
334  m_modelPopup->AddEntry("Open Object Controller ...",kOpenObjectControllerMO);
335  m_afterViewSeperator = dynamic_cast<TGMenuEntry*>(m_modelPopup->GetListOfEntries()->Last());
336  m_modelPopup->AddEntry("Open Collection Controller ...",kOpenCollectionControllerMO);
337 
338  m_modelPopup->Connect("Activated(Int_t)",
339  "FWModelContextMenuHandler",
340  const_cast<FWModelContextMenuHandler*>(this),
341  "chosenItem(Int_t)");
342  }
343 }
344 
345 void
347 {
348  if(0==m_colorPopup) {
349  std::vector<Color_t> colors;
351 
352  m_colorPopup = new FWColorPopup(gClient->GetDefaultRoot(), colors.front());
353  m_colorPopup->InitContent("", colors);
354  m_colorPopup->Connect("ColorSelected(Color_t)","FWModelContextMenuHandler", const_cast<FWModelContextMenuHandler*>(this), "colorChangeRequested(Color_t)");
355  }
356 }
357 
358 //
359 // static member functions
360 //
361 
const std::set< FWModelId > & selected() const
FWModelContextMenuHandler(FWSelectionManager *, FWDetailViewManager *, FWColorManager *, FWGUIManager *)
int i
Definition: DBlmapReader.cc:9
void setColor(Color_t iColor)
void showModelPopup()
void InitContent(const char *name, const std::vector< Color_t > &colors, bool backgroundIsBlack=true)
FWSelectionManager * m_selectionManager
void SetName(const char *iName)
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:286
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)
int index() const
Definition: FWModelId.h:50
static const char *const kOpenDetailView
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
void showSelectedModelContext(Int_t iX, Int_t iY, FWViewContextMenuHandlerBase *) const
NOTE: iX and iY are in global coordinates.
void addTo(FWModelContextMenuHandler &, const FWModelId &id)
std::vector< std::string > detailViewsFor(const FWModelId &) const
FWDetailViewManager * m_detailViewManager
void addViewEntry(const char *, int, bool enabled=true)
void openDetailViewFor(const FWModelId &, const std::string &)
tuple cout
Definition: gather_cfg.py:41
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:535
void setIsVisible(bool iSet)
const FWEventItem * item() const
Definition: FWModelId.h:45