Salome HOME
59d134e9e0778fc8aa7b08c79ddba55b639a0b47
[modules/smesh.git] / src / SMESHGUI / SMESHGUI.h
1 // SMESH SMESHGUI : GUI for SMESH component
2 //
3 // Copyright (C) 2003  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 // File   : SMESHGUI.h
23 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_H
27 #define SMESHGUI_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // SALOME GUI includes
33 #include <SalomeApp_Module.h>
34 #include <SALOME_InteractiveObject.hxx>
35
36 // IDL includes
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_Selection;
51 class LightApp_SelectionMgr;
52
53 class SMESHGUI_FilterLibraryDlg;
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* );
85
86   void                            ResetState();
87   void                            SetState( int );
88   bool                            DefineDlgPosition( QWidget*, int&, int& );
89   void                            switchToOperation( int );
90
91   virtual bool                    OnGUIEvent( int );
92   virtual bool                    OnMousePress( QMouseEvent*, SUIT_ViewWindow* );
93   virtual bool                    OnMouseMove( QMouseEvent*, SUIT_ViewWindow* );
94   virtual bool                    OnKeyPress( QKeyEvent*, SUIT_ViewWindow* );
95
96   virtual LightApp_Selection*     createSelection() const;
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                    contextMenuPopup( const QString&, QMenu*, QString& );
107   virtual void                    createPreferences();
108   virtual void                    preferencesChanged( const QString&, const QString& );
109
110   virtual void                    update( const int );
111
112   static SALOMEDS::Color          getUniqueColor( const QList<SALOMEDS::Color>& );
113
114   virtual void                    storeVisualParameters  (int savePoint);
115   virtual void                    restoreVisualParameters(int savePoint);
116
117 public slots:
118   virtual bool                    deactivateModule( SUIT_Study* );
119   virtual bool                    activateModule( SUIT_Study* );
120   virtual void                    studyClosed( SUIT_Study* );
121
122 private slots:
123   void                            OnGUIEvent();
124   void                            onViewManagerActivated( SUIT_ViewManager* );
125   void                            onOperationCommited( SUIT_Operation* );
126   void                            onOperationAborted( SUIT_Operation* );
127
128
129 signals:
130   void                            SignalDeactivateActiveDialog();
131   void                            SignalStudyFrameChanged();
132   void                            SignalCloseAllDialogs();
133
134 protected:
135   void                            createSMESHAction( const int,
136                                                      const QString&,
137                                                      const QString& = QString(),
138                                                      const int = 0,
139                                                      const bool = false );
140   void                            createPopupItem( const int,
141                                                    const QString&,
142                                                    const QString&,
143                                                    const QString& = QString(),
144                                                    const int = -1 );
145
146   virtual LightApp_Operation*     createOperation( const int ) const;
147
148   virtual bool                    isSelectionCompatible();
149
150 private:
151   void                            OnEditDelete();
152
153 private :
154   static SMESH::SMESH_Gen_var     myComponentSMESH;
155   QDialog*                        myActiveDialogBox;
156   int                             myState;
157   QMap<int, QString>              myRules;
158   LightApp_Displayer*             myDisplayer;
159
160   SMESHGUI_FilterLibraryDlg*      myFilterLibraryDlg;
161 };
162
163 #endif // SMESHGUI_H