]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Module.h
Salome HOME
Undo/Redo operation.
[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 <LightApp_Module.h>
27
28 class GraphicsView_Viewer;
29
30 class SUIT_ViewWindow;
31
32 class HYDROGUI_DataModel;
33 class HYDROGUI_Displayer;
34
35 /**\class HYDROGUI_Module
36  *\brief The class representing the HYDROGUI module
37  */
38 class HYDROGUI_Module : public LightApp_Module
39 {
40   Q_OBJECT
41
42 public:
43   HYDROGUI_Module();
44   virtual ~HYDROGUI_Module();
45
46   /**
47    * Returns the module study identifier
48    */
49   int getStudyId() const;
50
51   virtual void initialize( CAM_Application* );
52   virtual void windows( QMap<int, int>& ) const;
53   virtual void viewManagers( QStringList& ) const;
54
55   virtual void update( const int );
56   virtual void updateCommandsStatus();
57
58   HYDROGUI_DataModel* getDataModel() const;
59   HYDROGUI_Displayer* getDisplayer() const;
60
61   GraphicsView_Viewer* getViewer( const int theViewerId ) const;
62
63 protected:
64   CAM_DataModel* createDataModel();
65
66 public slots:
67   virtual bool activateModule( SUIT_Study* );
68   virtual bool deactivateModule( SUIT_Study* );
69
70 protected:
71   virtual LightApp_Operation* createOperation( const int ) const;
72
73 protected slots:
74   void onOperation();
75
76   bool onUndo( int theNumActions );
77   bool onRedo( int theNumActions );
78
79   virtual void onViewManagerAdded( SUIT_ViewManager* );
80   virtual void onViewManagerRemoved( SUIT_ViewManager* );
81   virtual void onViewCreated( SUIT_ViewWindow* );
82
83 private:
84   void updateGV( const bool theIsInit = false, 
85                  const bool theIsForced = false );
86
87   void createSelector( SUIT_ViewManager* viewMgr );
88
89   bool setUpdateEnabled( const bool theState );
90   bool isUpdateEnabled() const;
91
92 private:
93   void createActions();
94   void createMenus();
95   void createPopups();
96   void createToolbars();
97
98   void createUndoRedoActions();
99   void updateUndoRedoControls();
100
101 private:
102   QAction* createAction( const int theId, const QString& theSuffix,
103                          const QString& theImg = QString::null,
104                          const int theKey = 0, const bool isToggle = false,
105                          const QString& theSlot = QString::null );
106
107 private:
108   HYDROGUI_Displayer* myDisplayer;
109
110   bool myIsUpdateEnabled;
111 };
112
113 #endif