Salome HOME
e862109e2a14e3d4143411721fe72870f8d82423
[modules/gui.git] / src / CAM / CAM_Module.h
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef CAM_MODULE_H
24 #define CAM_MODULE_H
25
26 #include "CAM.h"
27
28 #include <QObject>
29 #include <QPixmap>
30 #include <QString>
31 #include <QMap>
32 #include <QPair>
33 #include <QKeySequence>
34
35 class QAction;
36 class QMenu;
37 class QIcon;
38
39 class QtxActionGroup;
40 class QtxActionMenuMgr;
41 class QtxActionToolMgr;
42 class SUIT_Study;
43 class SUIT_Application;
44 class CAM_Study;
45 class CAM_DataModel;
46 class CAM_Application;
47
48 #ifdef WIN32
49 #pragma warning( disable: 4251 )
50 #endif
51
52 class CAM_EXPORT CAM_Module : public QObject
53 {
54   Q_OBJECT
55
56 public:
57   CAM_Module();
58   CAM_Module( const QString& );
59   virtual ~CAM_Module();
60
61   virtual void           initialize( CAM_Application* );
62
63   QString                name() const;
64   QString                moduleName() const;
65   virtual QPixmap        moduleIcon() const;
66   virtual QString        iconName() const;
67
68   CAM_DataModel*         dataModel() const;
69   CAM_Application*       application() const;
70
71   virtual void           contextMenuPopup( const QString&, QMenu*, QString& ) {};
72   virtual void           updateCommandsStatus() {};
73
74   virtual void           putInfo( const QString&, const int = -1 );
75
76   int                    showNotification(const QString& message, const QString& title, int timeout = -1);
77   void                   hideNotification(const QString& message);
78   void                   hideNotification(int id);
79
80   bool                   isActiveModule() const;
81
82   virtual void           setMenuShown( const bool );
83   void                   setMenuShown( QAction*, const bool );
84   void                   setMenuShown( const int, const bool );
85
86   virtual void           setToolShown( const bool );
87   void                   setToolShown( QAction*, const bool );
88   void                   setToolShown( const int, const bool );
89
90   virtual void           updateModuleVisibilityState();
91
92   virtual bool           activateOperation( int actionId );
93   virtual bool           activateOperation( const QString& actionId );
94   virtual bool           activateOperation( const QString& actionId, const QString& pluginName );
95
96   // actions/menu/toolbars management
97
98   QtxActionMenuMgr*      menuMgr() const;
99   QtxActionToolMgr*      toolMgr() const;
100
101   virtual QAction*       action( const int ) const;
102   virtual int            actionId( const QAction* ) const;
103   virtual QAction*       createAction( const int, const QString&, const QIcon&, const QString&,
104                                        const QString&, const int, QObject* = 0,
105                                        const bool = false, QObject* = 0, const char* = 0, const QString& = QString() );
106   virtual QAction*       createAction( const int, const QString&, const QIcon&, const QString&,
107                                        const QString&, const QKeySequence&, QObject* = 0,
108                                        const bool = false, QObject* = 0, const char* = 0, const QString& = QString() );
109   QtxActionGroup*        createActionGroup( const int, const bool = true );
110
111   int                    createTool( const QString&, const QString& = QString() );
112   int                    createTool( const int, const int, const int = -1 );
113   int                    createTool( const int, const QString&, const int = -1 );
114   int                    createTool( QAction*, const int, const int = -1, const int = -1 );
115   int                    createTool( QAction*, const QString&, const int = -1, const int = -1 );
116   void                   clearTool( const QString& title );
117
118   int                    createMenu( const QString&, const int, const int = -1, const int = -1, const int = -1,QMenu * = 0);
119   int                    createMenu( const QString&, const QString&, const int = -1, const int = -1, const int = -1 );
120   int                    createMenu( const int, const int, const int = -1, const int = -1 );
121   int                    createMenu( const int, const QString&, const int = -1, const int = -1 );
122   int                    createMenu( QAction*, const int, const int = -1, const int = -1, const int = -1 );
123   int                    createMenu( QAction*, const QString&, const int = -1, const int = -1, const int = -1 );
124
125   static QAction*        separator();
126
127 public slots:
128   virtual bool           activateModule( SUIT_Study* );
129   virtual bool           deactivateModule( SUIT_Study* );
130
131   virtual void           connectToStudy( CAM_Study* );
132
133   virtual void           studyClosed( SUIT_Study* );
134   virtual void           studyChanged( SUIT_Study*, SUIT_Study* );
135
136   virtual void           onApplicationClosed( SUIT_Application* );
137
138 private slots:
139   void                   onInfoChanged( QString );
140
141 protected: 
142   virtual bool           isSelectionCompatible();
143
144   virtual CAM_DataModel* createDataModel();
145
146   void                   setName( const QString& );
147   virtual void           setModuleName( const QString& );
148
149   int                    registerAction( const int, QAction* );
150   bool                   unregisterAction( const int );
151   bool                   unregisterAction( QAction* );
152   // IMN 05/03/2015: we copied myActionMap for reset/unset actions accelerator keys
153   // after activate/deactivate modules
154   QMap<QAction*, QKeySequence> myActionShortcutMap; //!< copy actions shortcut map
155
156   virtual bool           abortAllOperations();
157
158 private:
159   CAM_Application*       myApp;             //!< parent application object
160   QString                myName;            //!< module title (user name)
161   QPixmap                myIcon;            //!< module icon
162   QString                myInfo;            //!< latest info message
163   CAM_DataModel*         myDataModel;       //!< data model
164   QMap<int, QAction*>    myActionMap;       //!< menu actions
165   bool                   myMenuShown;       //!< menu shown flag
166   bool                   myToolShown;       //!< tool shown flag
167
168   friend class CAM_Application;
169 };
170
171 #ifdef WIN32
172 #pragma warning( default: 4251 )
173 #endif
174
175 extern "C"
176 {
177   typedef CAM_Module* (*GET_MODULE_FUNC)();
178   typedef char* (*GET_VERSION_FUNC)();
179 }
180
181 #define GET_MODULE_NAME "createModule"
182 #define GET_VERSION_NAME "getModuleVersion"
183 #endif