Salome HOME
Using files from package LightApp instead of SalomeApp
[modules/geom.git] / src / GEOMGUI / GeometryGUI.h
1 //  GEOM GEOMGUI : GUI for Geometry 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : GeometryGUI.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef GEOMETRYGUI_H
30 #define GEOMETRYGUI_H
31
32 #include "SalomeApp_Module.h"
33
34 #include "GEOMGUI.h"
35 #include "GEOM_Client.hxx"
36 #include "SALOME_InteractiveObject.hxx"
37
38 #include "SALOMEDSClient.hxx"
39
40 // QT Includes
41 #include <qmap.h>
42
43 // OCCT Includes
44 #include <gp_Ax3.hxx>
45
46 // IDL headers
47 #include "SALOMEconfig.h"
48 #include CORBA_CLIENT_HEADER(SALOMEDS)
49
50 #ifdef WNT
51 #include <SALOME_WNT.hxx>
52 #else
53 #define SALOME_WNT_EXPORT
54 #endif
55
56 //#if defined WNT 
57 //#include <SALOME_WNT.hxx>
58 //#else
59 //#define SALOME_WNT_EXPORT
60 //#endif
61
62 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
63 #define GEOMGUI_WNT_EXPORT __declspec( dllexport )
64 #else
65 #define GEOMGUI_WNT_EXPORT
66 #endif
67
68 typedef QMap<QString, GEOMGUI*> GUIMap;
69
70 class QDialog;
71 class QPopupMenu;
72 class GEOMGUI_OCCSelector;
73 class LightApp_VTKSelector;
74 class LightApp_Selection;
75 class SUIT_ViewManager;
76
77 //=================================================================================
78 // class    : GeometryGUI
79 // purpose  :
80 //=================================================================================
81 class  GEOMGUI_WNT_EXPORT GeometryGUI : public SalomeApp_Module
82 {
83   Q_OBJECT;
84
85 public:
86   // Constructor
87   GeometryGUI();
88
89   // Destructor
90   ~GeometryGUI();
91
92   virtual LightApp_Displayer* displayer();
93   virtual void                initialize( CAM_Application* );
94   virtual QString             engineIOR() const;
95
96   static bool                 InitGeomGen();   //BugID IPAL9186: SRN: To be called by Python scripts
97
98   static  GEOM::GEOM_Gen_var  GetGeomGen();//        { return GeometryGUI::myComponentGeom; }
99
100   static CORBA::Object_var    ClientSObjectToObject (_PTR(SObject) theSObject);
101   static SALOMEDS::Study_var  ClientStudyToStudy (_PTR(Study) theStudy);
102
103   GEOM_Client&                GetShapeReader()    { return myShapeReader; }
104   Standard_CString&           GetFatherior()      { return myFatherior; }
105   //void                        SetState( const int state ) { myState = state; }
106   //int                         GetState() const    { return myState; }
107
108   // Get active dialog box
109   QDialog*                    GetActiveDialogBox(){ return myActiveDialogBox; }
110   // Set active dialog box
111   void                        SetActiveDialogBox( QDialog* aDlg );
112
113   // Non modal dialog boxes management
114   void                        EmitSignalDeactivateDialog();
115   void                        EmitSignalCloseAllDialogs();
116   void                        EmitSignalDefaultStepValueChanged( double newVal );
117
118   void                        OnGUIEvent( int id );
119
120   virtual bool                OnKeyPress( QKeyEvent*, SUIT_ViewWindow* );
121   virtual bool                OnMousePress( QMouseEvent*, SUIT_ViewWindow* );
122   virtual bool                OnMouseMove( QMouseEvent*, SUIT_ViewWindow* );
123
124 //  virtual bool                SetSettings();
125 //  virtual void                SupportedViewType ( int* buffer, int bufferSize );
126   virtual void                BuildPresentation( const Handle(SALOME_InteractiveObject)&, SUIT_ViewWindow* = 0 );
127
128 //  virtual void                DefinePopup( QString & theContext, QString & theParent, QString & theObject);
129 //  virtual bool                CustomPopup( QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext,
130 //                                         const QString& theParent, const QString& theObject );
131
132   // The Working Plane management
133   void                        SetWorkingPlane( gp_Ax3 wp ) { myWorkingPlane = wp;   }
134   gp_Ax3                      GetWorkingPlane()            { return myWorkingPlane; }
135   void                        ActiveWorkingPlane();
136
137   virtual void                windows( QMap<int, int>& ) const;
138   virtual void                viewManagers( QStringList& ) const;
139
140   virtual void                contextMenuPopup( const QString&, QPopupMenu*, QString& );
141   virtual void                createPreferences();
142   virtual void                preferencesChanged( const QString&, const QString& );
143
144
145 public slots:
146   virtual bool                deactivateModule( SUIT_Study* );
147   virtual bool                activateModule( SUIT_Study* );
148
149 private slots:
150   void                        OnGUIEvent();
151   void                        onViewManagerAdded( SUIT_ViewManager* );
152   void                        onViewManagerRemoved( SUIT_ViewManager* );
153   void                        onWindowActivated( SUIT_ViewWindow* );
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   void                        createPopupItem( const int, const QString& clients, const QString& types,
169                                                const bool isSingle = false, const int isVisible = -1,
170                                                const bool isExpandAll = false, const bool isOCC = false,
171                                                const int parentId = -1 );
172
173 public:
174   static GEOM::GEOM_Gen_var   myComponentGeom;   // GEOM engine!!!
175 private:  
176   GUIMap                      myGUIMap;          // GUI libraries map
177   QDialog*                    myActiveDialogBox; // active dialog box
178   GEOM_Client                 myShapeReader;     // geom shape reader
179   Standard_CString            myFatherior;
180   int                         myState;           // identify a method
181   gp_Ax3                      myWorkingPlane;
182   QMap<int,QString>           myRules;           // popup rules
183
184   QPtrList<GEOMGUI_OCCSelector>   myOCCSelectors;
185   QPtrList<LightApp_VTKSelector> myVTKSelectors;
186
187   LightApp_Displayer*         myDisplayer;
188
189 friend class DisplayGUI;
190 };
191
192 #endif