]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI.h
Salome HOME
34c19c6b220581c53b806e185bad4bf3423b17da
[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, const QVariant& theParam =  QVariant( QVariant::Invalid ) );
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   virtual void                message( const QString& msg);
139   static void                 ClearShapeBuffer( GEOM::GEOM_Object_ptr );
140   static GEOM::GEOM_Object_ptr
141                               GetObjectFromIOR( const QString& IOR );
142
143   static QString              GetIORFromObject( GEOM::GEOM_Object_ptr object );
144
145
146 public slots:
147   virtual bool                deactivateModule( SUIT_Study* );
148   virtual bool                activateModule( SUIT_Study* );
149   virtual void                OnKeyPress  ( SUIT_ViewWindow*, QKeyEvent*   );
150   virtual void                OnMousePress( SUIT_ViewWindow*, QMouseEvent* );
151   virtual void                OnMouseMove ( SUIT_ViewWindow*, QMouseEvent* );
152   virtual void                OnMouseRelease ( SUIT_ViewWindow*, QMouseEvent* );
153
154 protected slots:
155   virtual void                onViewManagerAdded( SUIT_ViewManager* );
156   virtual void                onViewManagerRemoved( SUIT_ViewManager* );
157
158 private slots:
159   void                        OnGUIEvent();
160   void                        onWindowActivated( SUIT_ViewWindow* );
161   void                        onViewAboutToShow();
162   void                        OnSetMaterial( const QString& );
163   void                        updateMaterials();
164
165 signals :
166   void                        SignalDeactivateActiveDialog();
167   void                        SignalCloseAllDialogs();
168   void                        SignalDefaultStepValueChanged( double newVal );
169
170 protected:
171   virtual LightApp_Selection* createSelection() const;
172
173 private:
174   GEOMGUI*                    getLibrary( const QString& libraryName );
175   void                        createGeomAction( const int id, const QString& po_id,
176                                                 const QString& icon_id = QString(""),
177                                                 const int key = 0, const bool toggle = false,
178                                                 const QString& shortcutAction = QString() );
179   void                        createPopupItem( const int, const QString& clients, const QString& types,
180                                                const bool isSingle = false, const int isVisible = -1,
181                                                const bool isExpandAll = false, const bool isOCC = false,
182                                                const int parentId = -1 );
183
184   void                        createOriginAndBaseVectors();
185
186 public:
187   static GEOM::GEOM_Gen_var   myComponentGeom;   // GEOM engine!!!
188
189 private:  
190
191 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
192   typedef QMap<long, Handle(TColStd_HArray1OfByte)> TextureMap;
193 #else
194   typedef QMap<long, Handle(Graphic3d_HArray1OfBytes)> TextureMap;
195 #endif
196
197   typedef QMap<long, TextureMap> StudyTextureMap;
198   typedef QMap<QString, GEOMGUI*> GUIMap;
199
200   GUIMap                      myGUIMap;          // GUI libraries map
201   QDialog*                    myActiveDialogBox; // active dialog box
202   gp_Ax3                      myWorkingPlane;
203   QMap<int,QString>           myRules;           // popup rules
204   static StudyTextureMap      myTextureMap;      // texture map
205
206   QList<GEOMGUI_OCCSelector*>  myOCCSelectors;
207   QList<LightApp_VTKSelector*> myVTKSelectors;
208
209   LightApp_Displayer*         myDisplayer;
210   int                         myLocalSelectionMode; //Select Only
211
212   friend class DisplayGUI;
213 };
214
215 #endif