X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOMGUI%2FGeometryGUI.h;h=8046544798e0ed3868e980b6c887b992b62d8f51;hb=49047f7d298f22733ce9bb55676486c1e7115855;hp=f2902c6bca6d60eac27d8fa1dbd39a6e15a72f67;hpb=9499b99fe2dcb53e1ea364f97986f8f432b04600;p=modules%2Fgeom.git diff --git a/src/GEOMGUI/GeometryGUI.h b/src/GEOMGUI/GeometryGUI.h index f2902c6bc..804654479 100644 --- a/src/GEOMGUI/GeometryGUI.h +++ b/src/GEOMGUI/GeometryGUI.h @@ -29,6 +29,8 @@ #ifndef GEOMETRYGUI_H #define GEOMETRYGUI_H +#include "GEOM_GEOMGUI.hxx" + #include "SalomeApp_Module.h" #include "GEOMGUI.h" @@ -38,7 +40,7 @@ #include "SALOMEDSClient.hxx" // QT Includes -#include +#include // OCCT Includes #include @@ -47,28 +49,10 @@ #include "SALOMEconfig.h" #include CORBA_CLIENT_HEADER(SALOMEDS) -#ifdef WNT -#include -#else -#define SALOME_WNT_EXPORT -#endif - -//#if defined WNT -//#include -//#else -//#define SALOME_WNT_EXPORT -//#endif - -#if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS -#define GEOMGUI_WNT_EXPORT __declspec( dllexport ) -#else -#define GEOMGUI_WNT_EXPORT -#endif - typedef QMap GUIMap; class QDialog; -class QPopupMenu; +class QMenu; class GEOMGUI_OCCSelector; class LightApp_VTKSelector; class LightApp_Selection; @@ -78,7 +62,7 @@ class SUIT_ViewManager; // class : GeometryGUI // purpose : //================================================================================= -class GEOMGUI_WNT_EXPORT GeometryGUI : public SalomeApp_Module +class GEOMGUI_EXPORT GeometryGUI : public SalomeApp_Module { Q_OBJECT; @@ -122,7 +106,7 @@ public: 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, QPopupMenu* popup, const QString& theContext, +// virtual bool CustomPopup( QAD_Desktop* parent, QMenu* popup, const QString& theContext, // const QString& theParent, const QString& theObject ); // The Working Plane management @@ -133,10 +117,11 @@ public: virtual void windows( QMap& ) const; virtual void viewManagers( QStringList& ) const; - virtual void contextMenuPopup( const QString&, QPopupMenu*, QString& ); + 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* ); @@ -159,7 +144,7 @@ signals : void SignalDefaultStepValueChanged( double newVal ); protected: - virtual LightApp_Selection* createSelection() const; + virtual LightApp_Selection* createSelection( const QString&, LightApp_SelectionMgr* ) const; private: GEOMGUI* getLibrary( const QString& libraryName ); @@ -182,10 +167,11 @@ private: gp_Ax3 myWorkingPlane; QMap myRules; // popup rules - QPtrList myOCCSelectors; - QPtrList myVTKSelectors; + QList myOCCSelectors; + QList myVTKSelectors; LightApp_Displayer* myDisplayer; + int myLocalSelectionMode; //Select Only friend class DisplayGUI; };