/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/CSGAction.h
127 строк
4 KB
alja
Transition from sigcpp-2 to sigcpp-3
03 дек 2021, 06:53
03 дек 2021, 06:53
9f144af
Код
Авторство
О чём код?
#ifndef Fireworks_Core_CSGAction_h #define Fireworks_Core_CSGAction_h // -*- C++ -*- // // Package: Core // Class : CSGAction // /**\class CSGAction CSGAction.h Fireworks/Core/interface/CSGAction.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Chris Jones // Created: Thu May 29 18:15:56 CDT 2008 // // system include files #include <string> #include <vector> #include <sigc++/sigc++.h> #include <TGFrame.h> #include <TGButton.h> #include <TGToolBar.h> // user include files // forward declarations class TGMenuBar; class TString; class CSGActionSupervisor; class CSGConnector; class FWCustomIconsButton; class CSGAction : public sigc::trackable { public: CSGAction(CSGActionSupervisor* supervisor, const char* name); virtual ~CSGAction(); // ---------- const member functions --------------------- const std::string& getName() const; const std::string& getToolTip() const; TString getSCCombo() const; Int_t getKeycode() const; Int_t getModcode() const; TGPopupMenu* getMenu() const; int getMenuEntry() const; ToolBarData_t* getToolBarData() const; TGToolBar* getToolBar() const; virtual Bool_t isEnabled() const; // ---------- static member functions -------------------- static TString keycodeToString(Int_t keycode); // ---------- member functions --------------------------- void setName(const std::string& name); void setMenuLabel(const std::string& label); void setToolTip(const std::string& tip); void createTextButton(TGCompositeFrame* p, TGLayoutHints* l = nullptr, Int_t id = -1, GContext_t norm = TGButton::GetDefaultGC()(), FontStruct_t font = TGTextButton::GetDefaultFontStruct(), UInt_t option = kRaisedFrame | kDoubleBorder); void createCheckButton(TGCompositeFrame* p, TGLayoutHints* l = nullptr, Bool_t state = true, Int_t id = -1, GContext_t norm = TGButton::GetDefaultGC()(), FontStruct_t font = TGTextButton::GetDefaultFontStruct()); void createPictureButton(TGCompositeFrame* p, const TGPicture* pic, TGLayoutHints* l = nullptr, Int_t id = -1, GContext_t norm = TGButton::GetDefaultGC()(), UInt_t option = kRaisedFrame | kDoubleBorder); FWCustomIconsButton* createCustomIconsButton(TGCompositeFrame* p, const TGPicture* upPic, const TGPicture* downPic, const TGPicture* disabledPic, TGLayoutHints* l = nullptr, Int_t id = -1, GContext_t norm = TGButton::GetDefaultGC()(), UInt_t option = 0); void createShortcut(UInt_t key, const char* mod, int windowID); void createMenuEntry(TGPopupMenu* menu); void enable(); void disable(); virtual void globalEnable(); virtual void globalDisable(); void addSCToMenu(); Bool_t resizeMenuEntry(); void activate() { activated.emit(); } sigc::signal<void()> activated; CSGAction(const CSGAction&) = delete; // stop default const CSGAction& operator=(const CSGAction&) = delete; // stop default private: void enableImp(); void disableImp(); // ---------- member data -------------------------------- CSGActionSupervisor* m_supervisor; std::string m_name; std::string m_toolTip; TString m_scCombo; std::vector<TGButton*> m_buttons; Int_t m_keycode; Int_t m_modcode; TGPopupMenu* m_menu; int m_entry; TGToolBar* m_toolBar; ToolBarData_t* m_tools; CSGConnector* m_connector; Bool_t m_enabled; Bool_t m_globalEnabled; int m_windowID; }; #endif