CMS 3D CMS Logo

FWViewContext.h
Go to the documentation of this file.
1 #ifndef Fireworks_Core_FWViewContext_h
2 #define Fireworks_Core_FWViewContext_h
3 // -*- C++ -*-
4 //
5 // Package: Core
6 // Class : FWViewContext
7 //
16 //
17 // Original Author: Alja Mrak-Tadel
18 // Created: Wed Apr 14 18:31:27 CEST 2010
19 //
20 
21 // system include files
22 #include <sigc++/sigc++.h>
23 #include <map>
24 #include <string>
25 #include "Rtypes.h"
26 
27 // user include files
28 
29 // forward declarations
30 class FWViewEnergyScale;
31 
33 public:
34  FWViewContext();
35  virtual ~FWViewContext();
36 
39 
40  void scaleChanged();
41 
42  mutable sigc::signal<void(const FWViewContext*)> scaleChanged_;
43 
44  FWViewContext(const FWViewContext&) = delete; // stop default
45 
46  const FWViewContext& operator=(const FWViewContext&) = delete; // stop default
47 
48 private:
49  // ---------- member data --------------------------------
50 
52 };
53 
54 #endif
void scaleChanged()
const FWViewContext & operator=(const FWViewContext &)=delete
sigc::signal< void(const FWViewContext *)> scaleChanged_
Definition: FWViewContext.h:42
FWViewEnergyScale * m_energyScale
Definition: FWViewContext.h:51
FWViewEnergyScale * getEnergyScale() const
virtual ~FWViewContext()
void setEnergyScale(FWViewEnergyScale *)