Salome HOME
for compilation under Linux
[modules/gui.git] / src / Plot2d / Plot2d_ViewModel.h
index ab40293bd613ee1dca43fa4a2d725c932241f007..4ba4fd2b6883ca37ddd6a05b33ca69cbe78aa1be 100755 (executable)
@@ -1,29 +1,45 @@
+// Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA 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.
+// 
+// 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/
+//
 #if !defined(_PLOT2D_VIEWMODEL_H)
 #define _PLOT2D_VIEWMODEL_H
 
 #include "Plot2d.h"
 #include "SUIT_ViewModel.h"
-#include "SUIT_ViewWindow.h"
-#include "SUIT_Desktop.h"
-#include "SUIT_ViewManager.h"
-#include "Plot2d_Prs.h"
-
-#include <qstring.h>
-#include <qpopupmenu.h>
 
 class SUIT_ViewWindow;
 class SUIT_Desktop;
+class Plot2d_ViewFrame;
+class Plot2d_Prs;
+class QString;
+class QPopupMenu;
 
 class PLOT2D_EXPORT Plot2d_Viewer: public SUIT_ViewModel
 {
   Q_OBJECT
 
 public:
-  static QString Type() { return tr("Plot2d_ViewModel"); }
+  static QString Type() { return "Plot2d"; }
 
   Plot2d_Viewer(bool theAutoDel = false);
   ~Plot2d_Viewer();
 
+  virtual void             setViewManager( SUIT_ViewManager* );
   virtual SUIT_ViewWindow* createView(SUIT_Desktop* theDesktop);
   virtual QString getType() const { return Type(); }
   virtual void contextMenuPopup(QPopupMenu*);
@@ -37,6 +53,7 @@ protected slots:
   void onChangeBgColor();
   void onDumpView();
   void onShowToolbar();
+  virtual void onCloneView( Plot2d_ViewFrame*, Plot2d_ViewFrame* );
 
 private:
   Plot2d_Prs* myPrs;