X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlot2d%2FPlot2d_ViewManager.h;h=ba707cdadb37ca8709ed7d898124fd008806e765;hb=5204b0c67ebf51714353b53f585ff7aafe70af30;hp=d2089fdddb47d30a7dd1b64ad5d01c2adee7b730;hpb=2e750f9ded92337bc3c44e9d7388180974cc4a43;p=modules%2Fgui.git diff --git a/src/Plot2d/Plot2d_ViewManager.h b/src/Plot2d/Plot2d_ViewManager.h index d2089fddd..ba707cdad 100755 --- a/src/Plot2d/Plot2d_ViewManager.h +++ b/src/Plot2d/Plot2d_ViewManager.h @@ -1,15 +1,36 @@ +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 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, 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 PLOT2D_VIEWMANAGER_H #define PLOT2D_VIEWMANAGER_H #include "Plot2d.h" - -#include "Plot2d_ViewWindow.h" - -#include "SUIT_Desktop.h" -#include "SUIT_ViewWindow.h" #include "SUIT_ViewManager.h" class SUIT_Desktop; +class SUIT_PreferenceMgr; +class Plot2d_ViewWindow; +class Plot2d_Viewer; +class Plot2d_ViewFrame; class PLOT2D_EXPORT Plot2d_ViewManager : public SUIT_ViewManager { @@ -19,19 +40,22 @@ public: Plot2d_ViewManager( SUIT_Study*, SUIT_Desktop* ); ~Plot2d_ViewManager(); - Plot2d_Viewer* getPlot2dModel() { return (Plot2d_Viewer*)myViewModel; }; + Plot2d_Viewer* getPlot2dModel() const; + Plot2d_ViewWindow* cloneView( Plot2d_ViewWindow* srcWnd ); + + static int fillPreferences( SUIT_PreferenceMgr*, const int ); protected: - void setViewName(SUIT_ViewWindow* theView); bool insertView(SUIT_ViewWindow* theView); public slots: void createView(); +protected slots: + void onCloneView(); -protected: - static int myMaxId; - int myId; +signals: + void cloneView( Plot2d_ViewFrame*, Plot2d_ViewFrame* ); }; #endif