Salome HOME
37298af3cdbf754a83d84495a161582863ed0a7b
[modules/gui.git] / src / VTKViewer / VTKViewer_ViewModel.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #ifndef VTKVIEWER_VIEWMODEL_H
23 #define VTKVIEWER_VIEWMODEL_H
24
25 #include "VTKViewer.h"
26 #include "SUIT_ViewModel.h"
27
28 #include <QColor>
29
30 class QMouseEvent;
31
32 class SUIT_ViewWindow;
33 class SUIT_Desktop;
34
35 class VTKVIEWER_EXPORT VTKViewer_Viewer: public SUIT_ViewModel
36 {
37   Q_OBJECT
38
39 public:
40   /*!Initialize type of viewer.*/
41   static QString Type() { return "VTKViewer"; }
42
43   VTKViewer_Viewer();
44   virtual ~VTKViewer_Viewer();
45
46   virtual SUIT_ViewWindow* createView(SUIT_Desktop* theDesktop);
47
48   virtual void             setViewManager(SUIT_ViewManager* theViewManager);
49   virtual void             contextMenuPopup( QMenu* );
50   /*!Gets type of viewer.*/
51   virtual QString          getType() const { return Type(); }
52
53 public:
54   void enableSelection(bool isEnabled);
55   /*!Checks: is selection enabled*/
56   bool isSelectionEnabled() const { return mySelectionEnabled; }
57
58   void enableMultiselection(bool isEnable);
59   /*!Checks: is multi selection enabled*/
60   bool isMultiSelectionEnabled() const { return myMultiSelectionEnabled; }
61
62   int  getSelectionCount() const;
63
64   QColor backgroundColor() const;
65   void   setBackgroundColor( const QColor& );
66
67 signals:
68   void selectionChanged();
69
70 protected slots:
71   void onMousePress(SUIT_ViewWindow*, QMouseEvent*);
72   void onMouseMove(SUIT_ViewWindow*, QMouseEvent*);
73   void onMouseRelease(SUIT_ViewWindow*, QMouseEvent*);
74
75   void onDumpView();
76   void onShowToolbar();
77   void onChangeBgColor();
78
79 private:
80   QColor myBgColor;
81   bool   mySelectionEnabled;
82   bool   myMultiSelectionEnabled;
83 };
84
85 #endif