Salome HOME
Bug 0020378: Gui of SMESH hypothesis not multi-study ?
[modules/smesh.git] / src / SMESHGUI / SMESHGUI.h
1 //  Copyright (C) 2007-2008  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 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI.h
24 //  Author : Nicolas REJNERI
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef SMESHGUI_HeaderFile
29 #define SMESHGUI_HeaderFile
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 // SALOME Includes
34 #include <SalomeApp_Module.h>
35 #include <SALOME_InteractiveObject.hxx>
36
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Gen)
39
40 class QDialog;
41
42 class SUIT_Desktop;
43 class SUIT_Study;
44 class SUIT_ViewWindow;
45 class SUIT_ResourceMgr;
46 class SUIT_ViewManager;
47
48 class LightApp_Operation;
49 class SalomeApp_Study;
50 class LightApp_SelectionMgr;
51
52 class SMESHGUI_FilterLibraryDlg;
53
54
55 //=================================================================================
56 // class    : SMESHGUI
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_EXPORT SMESHGUI : public SalomeApp_Module
60 {
61   Q_OBJECT;
62
63 public :
64   SMESHGUI();
65   ~SMESHGUI();
66
67   static SMESH::SMESH_Gen_var     GetSMESHGen();
68   static SMESHGUI*                GetSMESHGUI();
69   static LightApp_SelectionMgr*   selectionMgr();
70   static SUIT_ResourceMgr*        resourceMgr();
71   static SUIT_Desktop*            desktop() ;
72   static SalomeApp_Study*         activeStudy();
73   bool                            isActiveStudyLocked();
74
75   static bool                     automaticUpdate();
76
77   virtual LightApp_Displayer*     displayer();
78   virtual QString     engineIOR() const;
79   virtual void        initialize( CAM_Application* );
80   virtual void        windows( QMap<int, int>& ) const;
81   virtual void        viewManagers( QStringList& ) const;
82
83   QDialog*            GetActiveDialogBox() ;
84   void                SetActiveDialogBox(QDialog* aDlg) ;
85
86   void                ResetState() ;
87   void                SetState(int aState) ;
88   bool                DefineDlgPosition(QWidget* aDlg, int& x, int& y) ;
89   void                switchToOperation(int id) ;
90
91   virtual bool OnGUIEvent        ( int id );
92   virtual bool OnMousePress      ( QMouseEvent*, SUIT_ViewWindow* );
93   virtual bool OnMouseMove       ( QMouseEvent*, SUIT_ViewWindow* );
94   virtual bool OnKeyPress        ( QKeyEvent*, SUIT_ViewWindow* );
95
96   virtual void contextMenuPopup( const QString&, QPopupMenu*, QString& );
97
98   virtual void BuildPresentation ( const Handle(SALOME_InteractiveObject)&,
99                                    SUIT_ViewWindow* = 0 );
100
101   /* Non modal dialog boxes management */
102   void EmitSignalDeactivateDialog() ;
103   void EmitSignalStudyFrameChanged() ;
104   void EmitSignalCloseAllDialogs() ;
105
106   virtual void                createPreferences();
107   virtual void                preferencesChanged( const QString&, const QString& );
108   
109   virtual void                update( const int );
110
111   static SALOMEDS::Color      getUniqueColor( const QValueList<SALOMEDS::Color>& );
112
113 public slots:
114   virtual bool                deactivateModule( SUIT_Study* );
115   virtual bool                activateModule( SUIT_Study* );
116   virtual void                studyClosed( SUIT_Study* );
117
118 private slots:
119   void                        OnGUIEvent();
120   void                        onViewManagerActivated( SUIT_ViewManager* );
121   void                        onOperationCommited( SUIT_Operation* );
122   void                        onOperationAborted( SUIT_Operation* );
123
124
125 signals:
126   void SignalDeactivateActiveDialog() ;
127   void SignalStudyFrameChanged() ;
128   void SignalCloseAllDialogs() ;
129
130 protected:
131   void createSMESHAction( const int, const QString&, const QString& = QString(""),
132                           const int = 0, const bool = false );
133   void createPopupItem( const int, const QString&, const QString&,
134                         const QString& = QString::null, const int = -1 );
135   
136   virtual LightApp_Operation*      createOperation( const int ) const;
137
138   virtual bool                     isSelectionCompatible();
139
140 private:
141   void OnEditDelete();
142
143 private :
144   static SMESH::SMESH_Gen_var      myComponentSMESH;
145   QDialog*                         myActiveDialogBox;
146   int                              myState;
147   QMap<int,QString>                myRules;
148   LightApp_Displayer*              myDisplayer;
149
150   SMESHGUI_FilterLibraryDlg*       myFilterLibraryDlg;
151 };
152
153 #endif