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
24 // File : GeometryGUI.h
25 // Author : Lucien PIGNOLONI
32 #include "GEOM_GEOMGUI.hxx"
34 #include "SalomeApp_Module.h"
37 #include "GEOM_Client.hxx"
38 #include "SALOME_InteractiveObject.hxx"
40 #include "SALOMEDSClient.hxx"
49 #include "SALOMEconfig.h"
50 #include CORBA_CLIENT_HEADER(SALOMEDS)
52 typedef QMap<QString, GEOMGUI*> GUIMap;
56 class GEOMGUI_OCCSelector;
57 class LightApp_VTKSelector;
58 class LightApp_Selection;
59 class SUIT_ViewManager;
61 //=================================================================================
62 // class : GeometryGUI
64 //=================================================================================
65 class GEOMGUI_EXPORT GeometryGUI : public SalomeApp_Module
76 virtual LightApp_Displayer* displayer();
77 virtual void initialize( CAM_Application* );
78 virtual QString engineIOR() const;
80 static bool InitGeomGen(); //BugID IPAL9186: SRN: To be called by Python scripts
82 static GEOM::GEOM_Gen_var GetGeomGen();// { return GeometryGUI::myComponentGeom; }
84 static CORBA::Object_var ClientSObjectToObject (_PTR(SObject) theSObject);
85 static SALOMEDS::Study_var ClientStudyToStudy (_PTR(Study) theStudy);
87 GEOM_Client& GetShapeReader() { return myShapeReader; }
88 Standard_CString& GetFatherior() { return myFatherior; }
89 //void SetState( const int state ) { myState = state; }
90 //int GetState() const { return myState; }
92 // Get active dialog box
93 QDialog* GetActiveDialogBox(){ return myActiveDialogBox; }
94 // Set active dialog box
95 void SetActiveDialogBox( QDialog* aDlg );
97 // Non modal dialog boxes management
98 void EmitSignalDeactivateDialog();
99 void EmitSignalCloseAllDialogs();
100 void EmitSignalDefaultStepValueChanged( double newVal );
102 void OnGUIEvent( int id );
104 // virtual bool SetSettings();
105 // virtual void SupportedViewType ( int* buffer, int bufferSize );
106 virtual void BuildPresentation( const Handle(SALOME_InteractiveObject)&, SUIT_ViewWindow* = 0 );
108 // virtual void DefinePopup( QString & theContext, QString & theParent, QString & theObject);
109 // virtual bool CustomPopup( QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext,
110 // const QString& theParent, const QString& theObject );
112 // The Working Plane management
113 void SetWorkingPlane( gp_Ax3 wp ) { myWorkingPlane = wp; }
114 gp_Ax3 GetWorkingPlane() { return myWorkingPlane; }
115 void ActiveWorkingPlane();
117 virtual void windows( QMap<int, int>& ) const;
118 virtual void viewManagers( QStringList& ) const;
120 virtual void contextMenuPopup( const QString&, QPopupMenu*, QString& );
121 virtual void createPreferences();
122 virtual void preferencesChanged( const QString&, const QString& );
126 virtual bool deactivateModule( SUIT_Study* );
127 virtual bool activateModule( SUIT_Study* );
128 virtual void OnKeyPress ( SUIT_ViewWindow*, QKeyEvent* );
129 virtual void OnMousePress( SUIT_ViewWindow*, QMouseEvent* );
130 virtual void OnMouseMove ( SUIT_ViewWindow*, QMouseEvent* );
133 virtual void onViewManagerAdded( SUIT_ViewManager* );
134 virtual void onViewManagerRemoved( SUIT_ViewManager* );
138 void onWindowActivated( SUIT_ViewWindow* );
141 void SignalDeactivateActiveDialog();
142 void SignalCloseAllDialogs();
143 void SignalDefaultStepValueChanged( double newVal );
146 virtual LightApp_Selection* createSelection() const;
149 GEOMGUI* getLibrary( const QString& libraryName );
150 void createGeomAction( const int id, const QString& po_id,
151 const QString& icon_id = QString(""),
152 const int key = 0, const bool toggle = false );
153 void createPopupItem( const int, const QString& clients, const QString& types,
154 const bool isSingle = false, const int isVisible = -1,
155 const bool isExpandAll = false, const bool isOCC = false,
156 const int parentId = -1 );
159 static GEOM::GEOM_Gen_var myComponentGeom; // GEOM engine!!!
161 GUIMap myGUIMap; // GUI libraries map
162 QDialog* myActiveDialogBox; // active dialog box
163 GEOM_Client myShapeReader; // geom shape reader
164 Standard_CString myFatherior;
165 int myState; // identify a method
166 gp_Ax3 myWorkingPlane;
167 QMap<int,QString> myRules; // popup rules
169 QPtrList<GEOMGUI_OCCSelector> myOCCSelectors;
170 QPtrList<LightApp_VTKSelector> myVTKSelectors;
172 LightApp_Displayer* myDisplayer;
174 friend class DisplayGUI;