1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
25 // Author : Nicolas REJNERI
29 #ifndef SMESHGUI_HeaderFile
30 #define SMESHGUI_HeaderFile
32 #include "SMESH_SMESHGUI.hxx"
35 #include <SalomeApp_Module.h>
36 #include <SALOME_InteractiveObject.hxx>
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SMESH_Gen)
45 class SUIT_ViewWindow;
46 class SUIT_ResourceMgr;
47 class SUIT_ViewManager;
49 class LightApp_Operation;
50 class SalomeApp_Study;
51 class LightApp_SelectionMgr;
53 class SMESHGUI_FilterLibraryDlg;
56 //=================================================================================
59 //=================================================================================
60 class SMESHGUI_EXPORT SMESHGUI : public SalomeApp_Module
68 static SMESH::SMESH_Gen_var GetSMESHGen();
69 static SMESHGUI* GetSMESHGUI();
70 static LightApp_SelectionMgr* selectionMgr();
71 static SUIT_ResourceMgr* resourceMgr();
72 static SUIT_Desktop* desktop() ;
73 static SalomeApp_Study* activeStudy();
74 bool isActiveStudyLocked();
76 static bool automaticUpdate();
78 virtual LightApp_Displayer* displayer();
79 virtual QString engineIOR() const;
80 virtual void initialize( CAM_Application* );
81 virtual void windows( QMap<int, int>& ) const;
82 virtual void viewManagers( QStringList& ) const;
84 QDialog* GetActiveDialogBox() ;
85 void SetActiveDialogBox(QDialog* aDlg) ;
88 void SetState(int aState) ;
89 bool DefineDlgPosition(QWidget* aDlg, int& x, int& y) ;
90 void switchToOperation(int id) ;
92 virtual bool OnGUIEvent ( int id );
93 virtual bool OnMousePress ( QMouseEvent*, SUIT_ViewWindow* );
94 virtual bool OnMouseMove ( QMouseEvent*, SUIT_ViewWindow* );
95 virtual bool OnKeyPress ( QKeyEvent*, SUIT_ViewWindow* );
97 virtual void contextMenuPopup( const QString&, QPopupMenu*, QString& );
99 virtual void BuildPresentation ( const Handle(SALOME_InteractiveObject)&,
100 SUIT_ViewWindow* = 0 );
102 /* Non modal dialog boxes management */
103 void EmitSignalDeactivateDialog() ;
104 void EmitSignalStudyFrameChanged() ;
105 void EmitSignalCloseAllDialogs() ;
107 virtual void createPreferences();
108 virtual void preferencesChanged( const QString&, const QString& );
110 virtual void update( const int );
113 virtual bool deactivateModule( SUIT_Study* );
114 virtual bool activateModule( SUIT_Study* );
118 void onViewManagerActivated( SUIT_ViewManager* );
119 void onOperationCommited( SUIT_Operation* );
120 void onOperationAborted( SUIT_Operation* );
124 void SignalDeactivateActiveDialog() ;
125 void SignalStudyFrameChanged() ;
126 void SignalCloseAllDialogs() ;
129 void createSMESHAction( const int, const QString&, const QString& = QString(""),
130 const int = 0, const bool = false );
131 void createPopupItem( const int, const QString&, const QString&,
132 const QString& = QString::null, const int = -1 );
134 virtual LightApp_Operation* createOperation( const int ) const;
140 static SMESH::SMESH_Gen_var myComponentSMESH;
141 QDialog* myActiveDialogBox;
143 QMap<int,QString> myRules;
144 LightApp_Displayer* myDisplayer;
146 SMESHGUI_FilterLibraryDlg* myFilterLibraryDlg;