Salome HOME
updated copyright message
[modules/shaper.git] / src / XGUI / XGUI_MenuMgr.h
old mode 100755 (executable)
new mode 100644 (file)
index 74bf044..57092fb
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
-
-// File:        XGUI_MenuMgr.hxx
-// Created:     13 Apr 2016
-// Author:      Natalia ERMOLAEVA
+// Copyright (C) 2014-2023  CEA, EDF
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef XGUI_MENUMGR_H_
 #define XGUI_MENUMGR_H_
@@ -19,6 +32,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 +44,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<Events_Message>& theMessage);
 
 protected:
@@ -43,11 +62,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<XGUI_MenuWorkbench> findWorkbench(std::string& theWorkbenchName);
+  std::shared_ptr<XGUI_MenuWorkbench> 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<Config_FeatureMessage>& theMessage,
+                       const std::string& theWchName, const bool aUseSeparator) const;
 
 private:
-  XGUI_Workshop* myWorkshop; /// the current workshop
-  std::list< std::shared_ptr<XGUI_MenuWorkbench> > myWorkbenches; /// container of existing workbenchs
+  XGUI_Workshop* myWorkshop; ///< the current workshop
+
+  /// container of existing workbenchs
+  std::list< std::shared_ptr<XGUI_MenuWorkbench> > myWorkbenches;
 };
 
 #endif /* XGUI_MENUMGR_H_ */