Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:41

0001 #ifndef Fireworks_Core_FWLongParameterSetter_h
0002 #define Fireworks_Core_FWLongParameterSetter_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWLongParameterSetter
0007 //
0008 /**\class FWLongParameterSetter FWLongParameterSetter.h Fireworks/Core/interface/FWLongParameterSetter.h
0009 
0010    Description: <one line class summary>
0011 
0012    Usage:
0013     <usage>
0014 
0015  */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Mon Mar 10 11:22:26 CDT 2008
0019 //
0020 
0021 // system include files
0022 #include <Rtypes.h>
0023 
0024 // user include files
0025 #include "Fireworks/Core/interface/FWParameterSetterBase.h"
0026 #include "Fireworks/Core/interface/FWLongParameter.h"
0027 
0028 // forward declarations
0029 class TGNumberEntry;
0030 
0031 class FWLongParameterSetter : public FWParameterSetterBase {
0032 public:
0033   FWLongParameterSetter();
0034   ~FWLongParameterSetter() override;
0035 
0036   // ---------- const member functions ---------------------
0037 
0038   // ---------- static member functions --------------------
0039 
0040   // ---------- member functions ---------------------------
0041 
0042   void attach(FWParameterBase*) override;
0043   TGFrame* build(TGFrame* iParent, bool labelBack = true) override;
0044 
0045   void doUpdate(Long_t);
0046 
0047   FWLongParameterSetter(const FWLongParameterSetter&) = delete;                   // stop default
0048   const FWLongParameterSetter& operator=(const FWLongParameterSetter&) = delete;  // stop default
0049 
0050 private:
0051   // ---------- member data --------------------------------
0052 
0053   FWLongParameter* m_param;
0054   TGNumberEntry* m_widget;
0055 };
0056 
0057 #endif