X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_MenuMgr.h;h=b841c03a1ba9d4cec1235ba2846d506320cff08a;hb=1a972d24c2f891d8ae3e3b8cfe324339d28602bc;hp=74bf04407e24190d75f761875723414830e04879;hpb=a4ffa6e5a1578063cf8e3003b3ef98dbd3f32324;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_MenuMgr.h b/src/XGUI/XGUI_MenuMgr.h index 74bf04407..b841c03a1 100755 --- a/src/XGUI/XGUI_MenuMgr.h +++ b/src/XGUI/XGUI_MenuMgr.h @@ -19,6 +19,8 @@ class XGUI_MenuWorkbench; class XGUI_Workshop; class Config_FeatureMessage; +class QAction; + /** * \ingroup GUI * A class for management of menu actions (features). The actions should be arranged like they are @@ -29,11 +31,15 @@ class XGUI_MenuMgr : public Events_Listener { public: /// Constructor - /// \param the current workshop + /// \param theWorkshop the current workshop XGUI_EXPORT XGUI_MenuMgr(XGUI_Workshop* theWorkshop); XGUI_EXPORT virtual ~XGUI_MenuMgr() {} + /// Creates feature actions + XGUI_EXPORT void createFeatureActions(); + /// Redefinition of Events_Listener method + /// \param theMessage a message XGUI_EXPORT virtual void processEvent(const std::shared_ptr& theMessage); protected: @@ -43,11 +49,21 @@ protected: /// Finds or creates a workbench for the given name /// \param theWorkbenchName a name defined in XML /// \return an instance of workbench - std::shared_ptr findWorkbench(std::string& theWorkbenchName); + std::shared_ptr findWorkbench(const std::string& theWorkbenchName); + + /// Creates a new action by the message + /// \param theMessage an XML information of the feature + /// \param theWchName a workbench name, will be used as menu/tool bar name + /// \param aUseSeparator boolean value if a separator should be added after the action + /// \return an action + QAction* buildAction(const std::shared_ptr& theMessage, + const std::string& theWchName, const bool aUseSeparator) const; private: - XGUI_Workshop* myWorkshop; /// the current workshop - std::list< std::shared_ptr > myWorkbenches; /// container of existing workbenchs + XGUI_Workshop* myWorkshop; ///< the current workshop + + /// container of existing workbenchs + std::list< std::shared_ptr > myWorkbenches; }; #endif /* XGUI_MENUMGR_H_ */