X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModuleBase%2FModuleBase_IViewer.h;h=c58173af9169b6146c9a1a7b93685e136113fc7e;hb=1e2eaa713f139d2617c80eba9ede62d4e9976bb7;hp=5e989232480beedb819f6636c9b57c5eae2cdc8f;hpb=b24899c5ff113144ea6498484e6f20da8d6f773e;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IViewer.h b/src/ModuleBase/ModuleBase_IViewer.h index 5e9892324..c58173af9 100644 --- a/src/ModuleBase/ModuleBase_IViewer.h +++ b/src/ModuleBase/ModuleBase_IViewer.h @@ -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 +// #ifndef ModuleBase_IViewer_H #define ModuleBase_IViewer_H @@ -63,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 @@ -108,6 +129,8 @@ Q_OBJECT /// Fit all along Z (perpendicular to display) //virtual void Zfitall() = 0; + static Handle(Prs3d_Drawer) DefaultHighlightDrawer; + signals: /// Signal emited when last view window is closed void lastViewClosed(); @@ -158,6 +181,7 @@ signals: protected: /// A map for storing a scale factors dependent on view object QMap myWindowScale; + }; #endif