X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IViewer.h;h=30c233969e81d99f803e5883d11de3d16534a53c;hb=8cd56d486b6e96b8814002f9f0f4acadd6cea11b;hp=a82b5d24a1c4535465120f9b9568cb723eb6ee68;hpb=f6983bbb20107bac8e14360131ae763990d382f7;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IViewer.h b/src/ModuleBase/ModuleBase_IViewer.h index a82b5d24a..30c233969 100644 --- a/src/ModuleBase/ModuleBase_IViewer.h +++ b/src/ModuleBase/ModuleBase_IViewer.h @@ -8,6 +8,7 @@ #include #include #include +#include class QMouseEvent; class QKeyEvent; @@ -30,12 +31,17 @@ Q_OBJECT //! Returns AIS_InteractiveContext from current OCCViewer virtual Handle(AIS_InteractiveContext) AISContext() const = 0; + //! Trihedron 3d object shown in the viewer + virtual Handle(AIS_Trihedron) trihedron() const = 0; + //! Retrurns V3d_Vioewer from current viewer virtual Handle(V3d_Viewer) v3dViewer() const = 0; //! Returns Vsd_View object from currently active view window virtual Handle(V3d_View) activeView() const = 0; + virtual QWidget* activeViewPort() const = 0; + //! Enable or disable selection in the viewer //! \param isEnabled is enable or disable flag virtual void enableSelection(bool isEnabled) = 0; @@ -50,6 +56,9 @@ Q_OBJECT //! Returns true if multiselection is enabled virtual bool isMultiSelectionEnabled() const = 0; + //! Enable or disable draw mode in the viewer + virtual bool enableDrawMode(bool isEnabled) = 0; + //! Perfroms the fit all for the active view virtual void fitAll() = 0; @@ -79,6 +88,8 @@ Q_OBJECT /// Update current viewer virtual void update() = 0; + /// Returns a scale factor of the given view + /// \param theView a view object const double Scale(const Handle(V3d_View)& theView) { if (!myWindowScale.contains(theView)) @@ -86,13 +97,16 @@ Q_OBJECT return myWindowScale[theView]; } + /// Remember a scale factor for the view object + /// \param theView a view object + /// \param theVal a scale factor void SetScale(const Handle(V3d_View)& theView, const double theVal) { myWindowScale[theView] = theVal; } /// Method returns True if the viewer can process editing objects /// by mouse drugging. If this is impossible thet it has to return False. virtual bool canDragByMouse() const { return true; } - // Fit all along Z (perpendicular to display) + /// Fit all along Z (perpendicular to display) virtual void Zfitall() = 0; signals: @@ -139,7 +153,11 @@ signals: /// \param theTransformation type of transformation (see AppElements_ViewWindow::OperationType) void viewTransformed(int theTransformation); + /// Signal emited on selection changed + void trihedronVisibilityChanged(bool theState); + protected: + /// A map for storing a scale factors dependent on view object QMap myWindowScale; };