Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GEOMGUI / GeometryGUI.h
1 // Copyright (C) 2007-2012  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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : GeometryGUI.h
25 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
26
27 #ifndef GEOMETRYGUI_H
28 #define GEOMETRYGUI_H
29
30 #include "GEOM_GEOMGUI.hxx"
31
32 #include <Basics_OCCTVersion.hxx>
33
34 #include <SalomeApp_Module.h>
35
36 #include <GEOM_Client.hxx>
37 #include <SALOME_InteractiveObject.hxx>
38 #include <SALOMEDSClient.hxx>
39
40 #include "GEOMGUI.h"
41
42 // QT Includes
43 #include <QMap>
44
45 // OCCT Includes
46 #include <gp_Ax3.hxx>
47
48 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
49 #include <TColStd_HArray1OfByte.hxx>
50 #else
51 #include <Graphic3d_HArray1OfBytes.hxx>
52 #endif
53
54 // IDL headers
55 #include "SALOMEconfig.h"
56 #include CORBA_CLIENT_HEADER(SALOMEDS)
57
58 class QDialog;
59 class QMenu;
60 class QAction;
61 class GEOMGUI_OCCSelector;
62 class LightApp_VTKSelector;
63 class LightApp_Selection;
64 class SUIT_ViewManager;
65 class SalomeApp_Study;
66
67 //=================================================================================
68 // class    : GeometryGUI
69 // purpose  :
70 //=================================================================================
71 class  GEOMGUI_EXPORT GeometryGUI : public SalomeApp_Module
72 {
73   Q_OBJECT;
74
75 public:
76   // Constructor
77   GeometryGUI();
78
79   // Destructor
80   ~GeometryGUI();
81
82   virtual LightApp_Displayer* displayer();
83   virtual void                initialize( CAM_Application* );
84   virtual QString             engineIOR() const;
85
86 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
87   static Handle(TColStd_HArray1OfByte) getTexture (SalomeApp_Study*, int, int&, int&);
88 #else
89   static Handle(Graphic3d_HArray1OfBytes) getTexture (SalomeApp_Study*, int, int&, int&);
90 #endif
91
92   static bool                 InitGeomGen();
93
94   static  GEOM::GEOM_Gen_var  GetGeomGen();
95
96   static CORBA::Object_var    ClientSObjectToObject (_PTR(SObject) theSObject);
97   static SALOMEDS::Study_var  ClientStudyToStudy (_PTR(Study) theStudy);
98
99   static void                 Modified( bool = true );
100
101   GEOM_Client&                GetShapeReader()    { static SHAPE_READER(myShapeReader);return myShapeReader; }
102
103   // Get active dialog box
104   QDialog*                    GetActiveDialogBox(){ return myActiveDialogBox; }
105   // Set active dialog box
106   void                        SetActiveDialogBox( QDialog* aDlg );
107
108   // Non modal dialog boxes management
109   void                        EmitSignalDeactivateDialog();
110   void                        EmitSignalCloseAllDialogs();
111   void                        EmitSignalDefaultStepValueChanged( double newVal );
112
113   // Process action
114   void                        OnGUIEvent( int id );
115
116   // The Working Plane management
117   void                        SetWorkingPlane( gp_Ax3 wp ) { myWorkingPlane = wp;   }
118   gp_Ax3                      GetWorkingPlane()            { return myWorkingPlane; }
119   void                        ActiveWorkingPlane();
120
121   virtual bool                renameObject( const QString&, const QString& );
122   virtual bool                renameAllowed( const QString& ) const;
123
124   virtual void                windows( QMap<int, int>& ) const;
125   virtual void                viewManagers( QStringList& ) const;
126
127   virtual void                contextMenuPopup( const QString&, QMenu*, QString& );
128   virtual void                createPreferences();
129   virtual void                preferencesChanged( const QString&, const QString& );
130   int                         getLocalSelectionMode() const;
131   void                        setLocalSelectionMode(const int mode);
132
133   virtual void storeVisualParameters  (int savePoint);
134   virtual void restoreVisualParameters(int savePoint);
135
136   QAction*                    getAction(const int id);
137
138 public slots:
139   virtual bool                deactivateModule( SUIT_Study* );
140   virtual bool                activateModule( SUIT_Study* );
141   virtual void                OnKeyPress  ( SUIT_ViewWindow*, QKeyEvent*   );
142   virtual void                OnMousePress( SUIT_ViewWindow*, QMouseEvent* );
143   virtual void                OnMouseMove ( SUIT_ViewWindow*, QMouseEvent* );
144   virtual void                OnMouseRelease ( SUIT_ViewWindow*, QMouseEvent* );
145
146 protected slots:
147   virtual void                onViewManagerAdded( SUIT_ViewManager* );
148   virtual void                onViewManagerRemoved( SUIT_ViewManager* );
149
150 private slots:
151   void                        OnGUIEvent();
152   void                        onWindowActivated( SUIT_ViewWindow* );
153   void                        onViewAboutToShow();
154
155 signals :
156   void                        SignalDeactivateActiveDialog();
157   void                        SignalCloseAllDialogs();
158   void                        SignalDefaultStepValueChanged( double newVal );
159
160 protected:
161   virtual LightApp_Selection* createSelection() const;
162
163 private:
164   GEOMGUI*                    getLibrary( const QString& libraryName );
165   void                        createGeomAction( const int id, const QString& po_id,
166                                                 const QString& icon_id = QString(""),
167                                                 const int key = 0, const bool toggle = false,
168                                                 const QString& shortcutAction = QString() );
169   void                        createPopupItem( const int, const QString& clients, const QString& types,
170                                                const bool isSingle = false, const int isVisible = -1,
171                                                const bool isExpandAll = false, const bool isOCC = false,
172                                                const int parentId = -1 );
173
174   void                        createOriginAndBaseVectors();
175
176 public:
177   static GEOM::GEOM_Gen_var   myComponentGeom;   // GEOM engine!!!
178
179 private:  
180
181 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
182   typedef QMap<long, Handle(TColStd_HArray1OfByte)> TextureMap;
183 #else
184   typedef QMap<long, Handle(Graphic3d_HArray1OfBytes)> TextureMap;
185 #endif
186
187   typedef QMap<long, TextureMap> StudyTextureMap;
188   typedef QMap<QString, GEOMGUI*> GUIMap;
189
190   GUIMap                      myGUIMap;          // GUI libraries map
191   QDialog*                    myActiveDialogBox; // active dialog box
192   gp_Ax3                      myWorkingPlane;
193   QMap<int,QString>           myRules;           // popup rules
194   static StudyTextureMap      myTextureMap;      // texture map
195
196   QList<GEOMGUI_OCCSelector*>  myOCCSelectors;
197   QList<LightApp_VTKSelector*> myVTKSelectors;
198
199   LightApp_Displayer*         myDisplayer;
200   int                         myLocalSelectionMode; //Select Only
201
202   friend class DisplayGUI;
203 };
204
205 #endif