Salome HOME
Merge branch 'Results_Hierarchy'
[modules/shaper.git] / src / ModuleBase / ModuleBase_IViewer.h
index 30c233969e81d99f803e5883d11de3d16534a53c..c58173af9169b6146c9a1a7b93685e136113fc7e 100644 (file)
@@ -1,4 +1,22 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+//
+// 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, or (at your option) any later version.
+//
+// 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<mailto:webmaster.salome@opencascade.com>
+//
 
 #ifndef ModuleBase_IViewer_H
 #define ModuleBase_IViewer_H
@@ -18,7 +36,7 @@ class ModuleBase_IViewWindow;
 /**
  * \ingroup GUI
  * A Base object for definition of connector object to
- * Salome Viewer. Reimplemented in NewGeom_SalomeViewer class
+ * Salome Viewer. Reimplemented in SHAPERGUI_SalomeViewer class
  */
 class MODULEBASE_EXPORT ModuleBase_IViewer : public QObject
 {
@@ -40,6 +58,7 @@ Q_OBJECT
   //! Returns Vsd_View object from currently active view window
   virtual Handle(V3d_View) activeView() const = 0;
 
+  //! Returns currently active view port widget
   virtual QWidget* activeViewPort() const = 0;
 
   //! Enable or disable selection in the viewer
@@ -62,6 +81,9 @@ Q_OBJECT
   //! Perfroms the fit all for the active view
   virtual void fitAll() = 0;
 
+  //! Erases all presentations from the viewer
+  virtual void eraseAll() = 0;
+
   //! Sets the view projection
   /// \param theX the X projection value
   /// \param theY the Y projection value
@@ -82,9 +104,6 @@ Q_OBJECT
   /// \param theFilter a selection filter
   virtual bool hasSelectionFilter(const Handle(SelectMgr_Filter)& theFilter) = 0;
 
-  /// Remove all selection filters from the viewer
-  virtual void clearSelectionFilters() = 0;
-
   /// Update current viewer
   virtual void update() = 0;
 
@@ -100,14 +119,17 @@ Q_OBJECT
   /// 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; }
+  void SetScale(const Handle(V3d_View)& theView, const double theVal)
+  { myWindowScale[theView] = theVal; }
 
-  /// Method returns True if the viewer can process editing objects 
+  /// 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)
-  virtual void Zfitall() = 0;
+  //virtual void Zfitall() = 0;
+
+  static Handle(Prs3d_Drawer) DefaultHighlightDrawer;
 
 signals:
   /// Signal emited when last view window is closed
@@ -159,6 +181,7 @@ signals:
   protected:
     /// A map for storing a scale factors dependent on view object
     QMap<Handle(V3d_View), double> myWindowScale;
+
 };
 
 #endif