]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Module.h
Salome HOME
b930a167a397437b46b3ab45eb259b416f221d75
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Module.h
1 // Copyright (C) 2007-2013  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.
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 HYDROGUI_MODULE_H
24 #define HYDROGUI_MODULE_H
25
26 #include "HYDROGUI.h"
27
28 #include <LightApp_Module.h>
29
30 class SUIT_ViewWindow;
31
32 class HYDROGUI_DataModel;
33
34 /**\class HYDROGUI_Module
35  *\brief The class representing the HYDROGUI module
36  */
37 class HYDROGUI_Module : public LightApp_Module
38 {
39   Q_OBJECT
40
41 public:
42   HYDROGUI_Module();
43   virtual ~HYDROGUI_Module();
44
45   /**
46    * Returns the module study identifier
47    */
48   int getStudyId() const;
49
50   virtual void initialize( CAM_Application* );
51   virtual void windows( QMap<int, int>& ) const;
52   virtual void viewManagers( QStringList& ) const;
53
54   HYDROGUI_DataModel* getModel() const;
55
56 protected:
57   CAM_DataModel* createDataModel();
58
59 public slots:
60   virtual bool activateModule( SUIT_Study* );
61
62 protected:
63   virtual LightApp_Operation* createOperation( const int ) const;
64
65 protected slots:
66   void onOperation();
67   virtual void onViewManagerAdded( SUIT_ViewManager* );
68   virtual void onViewWindowAdded( SUIT_ViewWindow* );
69
70 private:
71   void CreateActions();
72   void CreateMenus();
73   void CreatePopups();
74   void CreateToolbars();
75
76 private:
77   QAction* CreateAction( const int theId, const QString& theSuffix,
78                          const QString& theImg = QString::null,
79                          const int theKey = 0, const bool isToggle = false,
80                          const QString& theSlot = QString::null );
81 };
82
83 #endif