Salome HOME
Fixing #22791: some entries not appearing in teh Filters menu of PARAVIS.
[modules/gui.git] / src / CAM / CAM_Module.h
1 // Copyright (C) 2007-2014  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
33 class QAction;
34 class QMenu;
35 class QIcon;
36
37 class QtxActionGroup;
38 class QtxActionMenuMgr;
39 class QtxActionToolMgr;
40 class SUIT_Study;
41 class SUIT_Application;
42 class CAM_Study;
43 class CAM_DataModel;
44 class CAM_Application;
45
46 #ifdef WIN32
47 #pragma warning( disable: 4251 )
48 #endif
49
50 class CAM_EXPORT CAM_Module : public QObject
51 {
52   Q_OBJECT
53
54 public:
55   CAM_Module();
56   CAM_Module( const QString& );
57   virtual ~CAM_Module();
58
59   virtual void           initialize( CAM_Application* );
60
61   QString                name() const;
62   QString                moduleName() const;
63   virtual QPixmap        moduleIcon() const;
64   virtual QString        iconName() const;
65
66   CAM_DataModel*         dataModel() const;
67   CAM_Application*       application() const;
68
69   virtual void           contextMenuPopup( const QString&, QMenu*, QString& ) {};
70   virtual void           updateCommandsStatus() {};
71
72   virtual void           putInfo( const QString&, const int = -1 );
73
74   bool                   isActiveModule() const;
75
76   virtual void           setMenuShown( const bool );
77   void                   setMenuShown( QAction*, const bool );
78   void                   setMenuShown( const int, const bool );
79
80   virtual void           setToolShown( const bool );
81   void                   setToolShown( QAction*, const bool );
82   void                   setToolShown( const int, const bool );
83
84   virtual void           updateModuleVisibilityState();
85
86   virtual bool           activateOperation( int actionId );
87   virtual bool           activateOperation( const QString& actionId );
88   virtual bool           activateOperation( const QString& actionId, const QString& pluginName );
89
90   // actions/menu/toolbars management
91
92   QtxActionMenuMgr*      menuMgr() const;
93   QtxActionToolMgr*      toolMgr() const;
94
95   virtual QAction*       action( const int ) const;
96   virtual int            actionId( const QAction* ) const;
97   virtual QAction*       createAction( const int, const QString&, const QIcon&, const QString&,
98                                        const QString&, const int, QObject* = 0,
99                                        const bool = false, QObject* = 0, const char* = 0, const QString& = QString() );
100   QtxActionGroup*        createActionGroup( const int, const bool = true );
101
102   int                    createTool( const QString&, const QString& = QString() );
103   int                    createTool( const int, const int, const int = -1 );
104   int                    createTool( const int, const QString&, const int = -1 );
105   int                    createTool( QAction*, const int, const int = -1, const int = -1 );
106   int                    createTool( QAction*, const QString&, const int = -1, const int = -1 );
107
108   int                    createMenu( const QString&, const int, const int = -1, const int = -1, const int = -1,QMenu * = 0);
109   int                    createMenu( const QString&, const QString&, const int = -1, const int = -1, const int = -1 );
110   int                    createMenu( const int, const int, const int = -1, const int = -1 );
111   int                    createMenu( const int, const QString&, const int = -1, const int = -1 );
112   int                    createMenu( QAction*, const int, const int = -1, const int = -1, const int = -1 );
113   int                    createMenu( QAction*, const QString&, const int = -1, const int = -1, const int = -1 );
114
115   static QAction*        separator();
116
117 public slots:
118   virtual bool           activateModule( SUIT_Study* );
119   virtual bool           deactivateModule( SUIT_Study* );
120
121   virtual void           connectToStudy( CAM_Study* );
122
123   virtual void           studyClosed( SUIT_Study* );
124   virtual void           studyChanged( SUIT_Study*, SUIT_Study* );
125
126   virtual void           onApplicationClosed( SUIT_Application* );
127
128 private slots:
129   void                   onInfoChanged( QString );
130
131 protected: 
132   virtual bool           isSelectionCompatible();
133
134   virtual CAM_DataModel* createDataModel();
135
136   void                   setName( const QString& );
137   virtual void           setModuleName( const QString& );
138
139   int                    registerAction( const int, QAction* );
140   bool                   unregisterAction( const int );
141   bool                   unregisterAction( QAction* );
142
143 private:
144   CAM_Application*       myApp;             //!< parent application object
145   QString                myName;            //!< module title (user name)
146   QPixmap                myIcon;            //!< module icon
147   QString                myInfo;            //!< latest info message
148   CAM_DataModel*         myDataModel;       //!< data model
149   QMap<int, QAction*>    myActionMap;       //!< menu actions
150   bool                   myMenuShown;       //!< menu shown flag
151   bool                   myToolShown;       //!< tool shown flag
152
153   friend class CAM_Application;
154 };
155
156 #ifdef WIN32
157 #pragma warning( default: 4251 )
158 #endif
159
160 extern "C"
161 {
162   typedef CAM_Module* (*GET_MODULE_FUNC)();
163   typedef char* (*GET_VERSION_FUNC)();
164 }
165
166 #define GET_MODULE_NAME "createModule"
167 #define GET_VERSION_NAME "getModuleVersion"
168 #endif