CMS 3D CMS Logo

FWEventItemsManager.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 #ifndef Fireworks_Core_FWEventItemsManager_h
3 #define Fireworks_Core_FWEventItemsManager_h
4 //
5 // Package: Core
6 // Class : FWEventItemsManager
7 //
16 //
17 // Original Author:
18 // Created: Thu Jan 3 13:27:29 EST 2008
19 //
20 
21 // system include files
22 #include <vector>
23 #include <memory>
24 #include "sigc++/signal.h"
25 
26 // user include files
28 
29 // forward declarations
30 namespace edm {
31  class EventBase;
32 }
33 namespace fireworks {
34  class Context;
35 }
36 
37 class FWEventItem;
40 class FWSelectionManager;
43 
45 public:
46  //does not take ownership of the object to which it points but does keep reference
48  ~FWEventItemsManager() override;
49 
50  typedef std::vector<FWEventItem*>::const_iterator const_iterator;
51 
52  //configuration management interface
53  void addTo(FWConfiguration&) const override;
54  void setFrom(const FWConfiguration&) override;
55 
56  // ---------- const member functions ---------------------
58  const_iterator begin() const;
59  const_iterator end() const;
60  // const std::vector<FWEventItem*> &items () const { return m_items; }
61 
62  const FWEventItem* find(const std::string& iName) const;
63  // ---------- static member functions --------------------
64 
65  // ---------- member functions ---------------------------
66  FWEventItem* add(const FWPhysicsObjectDesc& iItem, const FWConfiguration* pbConf = nullptr, bool doSetEvent = true);
67  void clearItems();
68 
69  void newEvent(const edm::EventBase* iEvent);
70 
72 
73  sigc::signal<void(FWEventItem*)> newItem_;
74  sigc::signal<void(const FWEventItem*)> removingItem_;
75  sigc::signal<void()> goingToClearItems_;
76 
77  FWEventItemsManager(const FWEventItemsManager&) = delete; // stop default
78 
79  const FWEventItemsManager& operator=(const FWEventItemsManager&) = delete; // stop default
80 
81 private:
82  void removeItem(const FWEventItem*);
83 
84  // ---------- member data --------------------------------
85  std::vector<FWEventItem*> m_items;
88 
90  std::shared_ptr<FWItemAccessorFactory> m_accessorFactory;
91 };
92 
93 #endif
FWModelChangeManager * m_changeManager
void removeItem(const FWEventItem *)
sigc::signal< void(FWEventItem *)> newItem_
void setFrom(const FWConfiguration &) override
const FWEventItemsManager & operator=(const FWEventItemsManager &)=delete
void setContext(fireworks::Context *)
const FWEventItem * find(const std::string &iName) const
int iEvent
Definition: GenABIO.cc:224
FWEventItem * add(const FWPhysicsObjectDesc &iItem, const FWConfiguration *pbConf=nullptr, bool doSetEvent=true)
const edm::EventBase * m_event
std::shared_ptr< FWItemAccessorFactory > m_accessorFactory
sigc::signal< void(const FWEventItem *)> removingItem_
void newEvent(const edm::EventBase *iEvent)
HLT enums.
void addTo(FWConfiguration &) const override
const_iterator begin() const
NOTE: iterator is allowed to return a null object for items that have been removed.
fireworks::Context * m_context
std::vector< FWEventItem * > m_items
const_iterator end() const
std::vector< FWEventItem * >::const_iterator const_iterator
sigc::signal< void()> goingToClearItems_
FWEventItemsManager(FWModelChangeManager *)