Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / src / XGUI / XGUI_MenuMgr.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef XGUI_MENUMGR_H_
22 #define XGUI_MENUMGR_H_
23
24 #include "XGUI.h"
25
26 #include <Events_Listener.h>
27
28 #include <string>
29 #include <list>
30 #include <memory>
31
32 class XGUI_MenuWorkbench;
33 class XGUI_Workshop;
34 class Config_FeatureMessage;
35
36 class QAction;
37
38 /**
39 * \ingroup GUI
40 * A class for management of menu actions (features). The actions should be arranged like they are
41 * in XML file. It listens the read feature of XML and fills internal structure of menu workbenches
42 * and groups of feature. After, it creates menues and tools in the module.
43 */
44 class XGUI_MenuMgr : public Events_Listener
45 {
46  public:
47   /// Constructor
48   /// \param theWorkshop the current workshop
49   XGUI_EXPORT XGUI_MenuMgr(XGUI_Workshop* theWorkshop);
50   XGUI_EXPORT virtual ~XGUI_MenuMgr() {}
51
52   /// Creates feature actions
53   XGUI_EXPORT void createFeatureActions();
54
55   /// Redefinition of Events_Listener method
56   /// \param theMessage a message
57   XGUI_EXPORT virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
58
59 protected:
60   /// Process event "Add a feature"
61   void addFeature(const std::shared_ptr<Config_FeatureMessage>& theMessage);
62
63   /// Finds or creates a workbench for the given name
64   /// \param theWorkbenchName a name defined in XML
65   /// \return an instance of workbench
66   std::shared_ptr<XGUI_MenuWorkbench> findWorkbench(const std::string& theWorkbenchName);
67
68   /// Creates a new action by the message
69   /// \param theMessage an XML information of the feature
70   /// \param theWchName a workbench name, will be used as menu/tool bar name
71   /// \param aUseSeparator boolean value if a separator should be added after the action
72   /// \return an action
73   QAction* buildAction(const std::shared_ptr<Config_FeatureMessage>& theMessage,
74                        const std::string& theWchName, const bool aUseSeparator) const;
75
76 private:
77   XGUI_Workshop* myWorkshop; ///< the current workshop
78
79   /// container of existing workbenchs
80   std::list< std::shared_ptr<XGUI_MenuWorkbench> > myWorkbenches;
81 };
82
83 #endif /* XGUI_MENUMGR_H_ */