FWViewContext

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
#ifndef Fireworks_Core_FWViewContext_h
#define Fireworks_Core_FWViewContext_h
// -*- C++ -*-
//
// Package:     Core
// Class  :     FWViewContext
//
/**\class FWViewContext FWViewContext.h Fireworks/Core/interface/FWViewContext.h

 Description: [one line class summary]

 Usage:
    <usage>

*/
//
// Original Author:  Alja Mrak-Tadel
//         Created:  Wed Apr 14 18:31:27 CEST 2010
//

// system include files
#include <sigc++/sigc++.h>
#include <map>
#include <string>
#include "Rtypes.h"

// user include files

// forward declarations
class FWViewEnergyScale;

class FWViewContext {
public:
  FWViewContext();
  virtual ~FWViewContext();

  FWViewEnergyScale* getEnergyScale() const;
  void setEnergyScale(FWViewEnergyScale*);

  void scaleChanged();

  mutable sigc::signal<void(const FWViewContext*)> scaleChanged_;

  FWViewContext(const FWViewContext&) = delete;  // stop default

  const FWViewContext& operator=(const FWViewContext&) = delete;  // stop default

private:
  // ---------- member data --------------------------------

  FWViewEnergyScale* m_energyScale;
};

#endif