X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOMGUI%2FGeometryGUI.h;h=7477ac6007cc12ea0ff54b4c70ff6ea2588cd2cd;hb=2dbe613765884256942925d8a95293e3c473caec;hp=255c46f128d50d95318eae5590d65d142a04ecfa;hpb=d3dd282390888d7dc091ba2c2ffe7923bd7458e6;p=modules%2Fgeom.git diff --git a/src/GEOMGUI/GeometryGUI.h b/src/GEOMGUI/GeometryGUI.h index 255c46f12..7477ac600 100644 --- a/src/GEOMGUI/GeometryGUI.h +++ b/src/GEOMGUI/GeometryGUI.h @@ -1,77 +1,91 @@ -// GEOM GEOMGUI : GUI for Geometry component +// GEOM GEOMGUI : GUI for Geometry component // -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. // +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// +// File : GeometryGUI.h +// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com) // -// File : GeometryGUI.h -// Author : Lucien PIGNOLONI -// Module : GEOM -// $Header$ #ifndef GEOMETRYGUI_H #define GEOMETRYGUI_H -#include "SALOMEGUI.h" +#include "GEOM_GEOMGUI.hxx" + +#include + +#include +#include +#include #include "GEOMGUI.h" -#include "GEOM_Client.hxx" -#include "SALOME_InteractiveObject.hxx" -#include -#include "gp_Ax3.hxx" +// QT Includes +#include + +// OCCT Includes +#include + +// IDL headers +#include "SALOMEconfig.h" +#include CORBA_CLIENT_HEADER(SALOMEDS) typedef QMap GUIMap; class QDialog; -class QPopupMenu; +class QMenu; +class GEOMGUI_OCCSelector; +class LightApp_VTKSelector; +class LightApp_Selection; +class SUIT_ViewManager; //================================================================================= // class : GeometryGUI // purpose : //================================================================================= -class GeometryGUI : public SALOMEGUI +class GEOMGUI_EXPORT GeometryGUI : public SalomeApp_Module { Q_OBJECT; -protected: +public: // Constructor - GeometryGUI(); // hide constructor to avoid direct creation - // get or load GUI library by name - GEOMGUI* getLibrary( const QString& libraryName ); + GeometryGUI(); -public: // Destructor ~GeometryGUI(); - // Get the only GeometryGUI object - static GeometryGUI* GetGeomGUI(); + virtual LightApp_Displayer* displayer(); + virtual void initialize( CAM_Application* ); + virtual QString engineIOR() const; - static CORBA::ORB_var GetORB(); + static bool InitGeomGen(); //BugID IPAL9186: SRN: To be called by Python scripts + + static GEOM::GEOM_Gen_var GetGeomGen();// { return GeometryGUI::myComponentGeom; } + + static CORBA::Object_var ClientSObjectToObject (_PTR(SObject) theSObject); + static SALOMEDS::Study_var ClientStudyToStudy (_PTR(Study) theStudy); - GEOM::GEOM_Gen_ptr GetGeomGen() { return myComponentGeom; } GEOM_Client& GetShapeReader() { return myShapeReader; } Standard_CString& GetFatherior() { return myFatherior; } - void SetState( const int state ) { myState = state; } - int GetState() const { return myState; } - + //void SetState( const int state ) { myState = state; } + //int GetState() const { return myState; } + // Get active dialog box QDialog* GetActiveDialogBox(){ return myActiveDialogBox; } // Set active dialog box @@ -82,42 +96,81 @@ public: void EmitSignalCloseAllDialogs(); void EmitSignalDefaultStepValueChanged( double newVal ); - // The following methods are called from IAPP - virtual bool OnGUIEvent(int theCommandID, QAD_Desktop* parent); - virtual bool OnMousePress(QMouseEvent* pe, QAD_Desktop* parent, QAD_StudyFrame* studyFrame); - virtual bool OnMouseMove(QMouseEvent* pe, QAD_Desktop* parent, QAD_StudyFrame* studyFrame); - virtual bool OnKeyPress(QKeyEvent* pe, QAD_Desktop* parent, QAD_StudyFrame* studyFrame); - virtual bool SetSettings(QAD_Desktop* parent); - virtual bool ActiveStudyChanged(QAD_Desktop* parent); - virtual void Deactivate(); - virtual void BuildPresentation( const Handle(SALOME_InteractiveObject)&, - QAD_ViewFrame* = 0 ); - virtual void SupportedViewType (int* buffer, int bufferSize); - virtual void DefinePopup(QString & theContext, QString & theParent, QString & theObject); - virtual bool CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext, - const QString& theParent, const QString& theObject); + void OnGUIEvent( int id ); + +// virtual bool SetSettings(); +// virtual void SupportedViewType ( int* buffer, int bufferSize ); + virtual void BuildPresentation( const Handle(SALOME_InteractiveObject)&, SUIT_ViewWindow* = 0 ); + +// virtual void DefinePopup( QString & theContext, QString & theParent, QString & theObject); +// virtual bool CustomPopup( QAD_Desktop* parent, QMenu* popup, const QString& theContext, +// const QString& theParent, const QString& theObject ); // The Working Plane management - void SetWorkingPlane(gp_Ax3 WorkingPlane) { myWorkingPlane = WorkingPlane; }; - gp_Ax3 GetWorkingPlane() { return myWorkingPlane; }; - void ActiveWorkingPlane(); + void SetWorkingPlane( gp_Ax3 wp ) { myWorkingPlane = wp; } + gp_Ax3 GetWorkingPlane() { return myWorkingPlane; } + void ActiveWorkingPlane(); + + virtual void windows( QMap& ) const; + virtual void viewManagers( QStringList& ) const; + + virtual void contextMenuPopup( const QString&, QMenu*, QString& ); + virtual void createPreferences(); + virtual void preferencesChanged( const QString&, const QString& ); + int getLocalSelectionMode() const; + void setLocalSelectionMode(const int mode); + +public slots: + virtual bool deactivateModule( SUIT_Study* ); + virtual bool activateModule( SUIT_Study* ); + virtual void OnKeyPress ( SUIT_ViewWindow*, QKeyEvent* ); + virtual void OnMousePress( SUIT_ViewWindow*, QMouseEvent* ); + virtual void OnMouseMove ( SUIT_ViewWindow*, QMouseEvent* ); + +protected slots: + virtual void onViewManagerAdded( SUIT_ViewManager* ); + virtual void onViewManagerRemoved( SUIT_ViewManager* ); + +private slots: + void OnGUIEvent(); + void onWindowActivated( SUIT_ViewWindow* ); signals : - void SignalDeactivateActiveDialog(); - void SignalCloseAllDialogs(); - void SignalDefaultStepValueChanged( double newVal ); + void SignalDeactivateActiveDialog(); + void SignalCloseAllDialogs(); + void SignalDefaultStepValueChanged( double newVal ); + +protected: + virtual LightApp_Selection* createSelection() const; private: - static GeometryGUI* myContext; // the only GeometryGUI object - - GUIMap myGUIMap; // GUI libraries map - QDialog* myActiveDialogBox; // active dialog box - GEOM_Client myShapeReader; // geom shape reader - Standard_CString myFatherior; - GEOM::GEOM_Gen_var myComponentGeom; // GEOM engine - int myState; // identify a method - gp_Ax3 myWorkingPlane; + GEOMGUI* getLibrary( const QString& libraryName ); + void createGeomAction( const int id, const QString& po_id, + const QString& icon_id = QString(""), + const int key = 0, const bool toggle = false ); + void createPopupItem( const int, const QString& clients, const QString& types, + const bool isSingle = false, const int isVisible = -1, + const bool isExpandAll = false, const bool isOCC = false, + const int parentId = -1 ); + +public: + static GEOM::GEOM_Gen_var myComponentGeom; // GEOM engine!!! +private: + GUIMap myGUIMap; // GUI libraries map + QDialog* myActiveDialogBox; // active dialog box + GEOM_Client myShapeReader; // geom shape reader + Standard_CString myFatherior; + int myState; // identify a method + gp_Ax3 myWorkingPlane; + QMap myRules; // popup rules + + QList myOCCSelectors; + QList myVTKSelectors; + + LightApp_Displayer* myDisplayer; + int myLocalSelectionMode; //Select Only + +friend class DisplayGUI; }; #endif -