Salome HOME
Displayer: bug in clearTemporary() is fixed.
[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 #include <qmap.h>
38
39 #include "gp_Ax3.hxx"
40
41 typedef QMap<QString, GEOMGUI*> GUIMap;
42
43 class QDialog;
44 class QPopupMenu;
45 class GEOMGUI_OCCSelector;
46 class SalomeApp_VTKSelector;
47 class SUIT_ViewManager;
48
49
50 //=================================================================================
51 // class    : GeometryGUI
52 // purpose  :
53 //=================================================================================
54 class GeometryGUI : public SalomeApp_Module
55 {
56   Q_OBJECT;
57
58 public:
59   // Constructor
60   GeometryGUI(); 
61
62   // Destructor
63   ~GeometryGUI();
64
65   virtual void                initialize( CAM_Application* );
66   virtual QString             engineIOR() const;
67
68   static GEOM::GEOM_Gen_var   GetGeomGen()        { return myComponentGeom; }
69   
70   GEOM_Client&                GetShapeReader()    { return myShapeReader; }
71   Standard_CString&           GetFatherior()      { return myFatherior; }
72   //void                        SetState( const int state ) { myState = state; }
73   //int                         GetState() const    { return myState; }
74   
75   // Get active dialog box
76   QDialog*                    GetActiveDialogBox(){ return myActiveDialogBox; }
77   // Set active dialog box
78   void                        SetActiveDialogBox( QDialog* aDlg );
79
80   // Non modal dialog boxes management
81   void                        EmitSignalDeactivateDialog();
82   void                        EmitSignalCloseAllDialogs();
83   void                        EmitSignalDefaultStepValueChanged( double newVal );
84
85   void                        OnGUIEvent( int id );
86   
87   virtual bool                OnKeyPress( QKeyEvent*, SUIT_ViewWindow* );
88   virtual bool                OnMousePress( QMouseEvent*, SUIT_ViewWindow* );
89   virtual bool                OnMouseMove( QMouseEvent*, SUIT_ViewWindow* );
90
91 //  virtual bool                SetSettings();
92 //  virtual void                SupportedViewType ( int* buffer, int bufferSize );
93   virtual void                BuildPresentation( const Handle(SALOME_InteractiveObject)&, SUIT_ViewWindow* = 0 );
94
95 //  virtual void                DefinePopup( QString & theContext, QString & theParent, QString & theObject);
96 //  virtual bool                CustomPopup( QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext,
97 //                                         const QString& theParent, const QString& theObject );
98
99   // The Working Plane management
100   void                        SetWorkingPlane( gp_Ax3 wp ) { myWorkingPlane = wp;   }
101   gp_Ax3                      GetWorkingPlane()            { return myWorkingPlane; }
102   void                        ActiveWorkingPlane();
103
104   virtual void                windows( QMap<int, int>& ) const;
105   virtual void                viewManagers( QStringList& ) const;
106
107   virtual void                contextMenuPopup( const QString&, QPopupMenu*, QString& );
108
109 public slots:
110   virtual void                deactivateModule( SUIT_Study* );
111   virtual void                activateModule( SUIT_Study* );
112
113 private slots:
114   void                        OnGUIEvent();
115   void                        onViewManagerAdded( SUIT_ViewManager* );
116   void                        onViewManagerRemoved( SUIT_ViewManager* );
117   void                        onWindowActivated( SUIT_ViewWindow* );
118
119 signals :
120   void                        SignalDeactivateActiveDialog();
121   void                        SignalCloseAllDialogs();
122   void                        SignalDefaultStepValueChanged( double newVal );
123
124 protected:
125   virtual SalomeApp_Selection* createSelection() const;
126
127 private:
128   GEOMGUI*                    getLibrary( const QString& libraryName );
129   void                        createGeomAction( const int id, const QString& po_id, const QString& icon_id = QString(""), const int key = 0, const bool toggle = false );
130   void                        createPopupItem( const int, const QString& clients, const QString& types, 
131                                                const bool isSingle = false, const int isVisible = -1, 
132                                                const bool isExpandAll = false, const bool isOCC = false, const int parentId = -1 );
133
134 private:
135   static GEOM::GEOM_Gen_var   myComponentGeom;   // GEOM engine
136
137   GUIMap                      myGUIMap;          // GUI libraries map
138   QDialog*                    myActiveDialogBox; // active dialog box
139   GEOM_Client                 myShapeReader;     // geom shape reader
140   Standard_CString            myFatherior;
141   int                         myState;           // identify a method
142   gp_Ax3                      myWorkingPlane;
143   QMap<int,QString>           myRules;           // popup rules
144
145   QPtrList<GEOMGUI_OCCSelector>   myOCCSelectors;
146   QPtrList<SalomeApp_VTKSelector> myVTKSelectors;
147 };
148
149 #endif
150