1 // GEOM GEOMGUI : GUI for Geometry 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
22 // File : GeometryGUI.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
29 #include "GEOM_GEOMGUI.hxx"
31 #include <SalomeApp_Module.h>
33 #include <GEOM_Client.hxx>
34 #include <SALOME_InteractiveObject.hxx>
35 #include <SALOMEDSClient.hxx>
46 #include "SALOMEconfig.h"
47 #include CORBA_CLIENT_HEADER(SALOMEDS)
49 typedef QMap<QString, GEOMGUI*> GUIMap;
53 class GEOMGUI_OCCSelector;
54 class LightApp_VTKSelector;
55 class LightApp_Selection;
56 class SUIT_ViewManager;
58 //=================================================================================
59 // class : GeometryGUI
61 //=================================================================================
62 class GEOMGUI_EXPORT GeometryGUI : public SalomeApp_Module
73 virtual LightApp_Displayer* displayer();
74 virtual void initialize( CAM_Application* );
75 virtual QString engineIOR() const;
77 static bool InitGeomGen(); //BugID IPAL9186: SRN: To be called by Python scripts
79 static GEOM::GEOM_Gen_var GetGeomGen();// { return GeometryGUI::myComponentGeom; }
81 static CORBA::Object_var ClientSObjectToObject (_PTR(SObject) theSObject);
82 static SALOMEDS::Study_var ClientStudyToStudy (_PTR(Study) theStudy);
84 GEOM_Client& GetShapeReader() { return myShapeReader; }
85 Standard_CString& GetFatherior() { return myFatherior; }
86 //void SetState( const int state ) { myState = state; }
87 //int GetState() const { return myState; }
89 // Get active dialog box
90 QDialog* GetActiveDialogBox(){ return myActiveDialogBox; }
91 // Set active dialog box
92 void SetActiveDialogBox( QDialog* aDlg );
94 // Non modal dialog boxes management
95 void EmitSignalDeactivateDialog();
96 void EmitSignalCloseAllDialogs();
97 void EmitSignalDefaultStepValueChanged( double newVal );
99 void OnGUIEvent( int id );
101 // virtual bool SetSettings();
102 // virtual void SupportedViewType ( int* buffer, int bufferSize );
103 virtual void BuildPresentation( const Handle(SALOME_InteractiveObject)&, SUIT_ViewWindow* = 0 );
105 // virtual void DefinePopup( QString & theContext, QString & theParent, QString & theObject);
106 // virtual bool CustomPopup( QAD_Desktop* parent, QMenu* popup, const QString& theContext,
107 // const QString& theParent, const QString& theObject );
109 // The Working Plane management
110 void SetWorkingPlane( gp_Ax3 wp ) { myWorkingPlane = wp; }
111 gp_Ax3 GetWorkingPlane() { return myWorkingPlane; }
112 void ActiveWorkingPlane();
114 virtual void windows( QMap<int, int>& ) const;
115 virtual void viewManagers( QStringList& ) const;
117 virtual void contextMenuPopup( const QString&, QMenu*, QString& );
118 virtual void createPreferences();
119 virtual void preferencesChanged( const QString&, const QString& );
120 int getLocalSelectionMode() const;
121 void setLocalSelectionMode(const int mode);
123 virtual void storeVisualParameters (int savePoint);
124 virtual void restoreVisualParameters(int savePoint);
127 virtual bool deactivateModule( SUIT_Study* );
128 virtual bool activateModule( SUIT_Study* );
129 virtual void OnKeyPress ( SUIT_ViewWindow*, QKeyEvent* );
130 virtual void OnMousePress( SUIT_ViewWindow*, QMouseEvent* );
131 virtual void OnMouseMove ( SUIT_ViewWindow*, QMouseEvent* );
134 virtual void onViewManagerAdded( SUIT_ViewManager* );
135 virtual void onViewManagerRemoved( SUIT_ViewManager* );
139 void onWindowActivated( SUIT_ViewWindow* );
142 void SignalDeactivateActiveDialog();
143 void SignalCloseAllDialogs();
144 void SignalDefaultStepValueChanged( double newVal );
147 virtual LightApp_Selection* createSelection() const;
150 GEOMGUI* getLibrary( const QString& libraryName );
151 void createGeomAction( const int id, const QString& po_id,
152 const QString& icon_id = QString(""),
153 const int key = 0, const bool toggle = false );
154 void createPopupItem( const int, const QString& clients, const QString& types,
155 const bool isSingle = false, const int isVisible = -1,
156 const bool isExpandAll = false, const bool isOCC = false,
157 const int parentId = -1 );
160 static GEOM::GEOM_Gen_var myComponentGeom; // GEOM engine!!!
162 GUIMap myGUIMap; // GUI libraries map
163 QDialog* myActiveDialogBox; // active dialog box
164 GEOM_Client myShapeReader; // geom shape reader
165 Standard_CString myFatherior;
166 int myState; // identify a method
167 gp_Ax3 myWorkingPlane;
168 QMap<int,QString> myRules; // popup rules
170 QList<GEOMGUI_OCCSelector*> myOCCSelectors;
171 QList<LightApp_VTKSelector*> myVTKSelectors;
173 LightApp_Displayer* myDisplayer;
174 int myLocalSelectionMode; //Select Only
176 friend class DisplayGUI;