Version: 9.15.0
SUIT_ViewModel.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2025 CEA, EDF, 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, or (at your option) any later version.
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 
23 #ifndef SUIT_VIEWMODEL_H
24 #define SUIT_VIEWMODEL_H
25 
26 #include "SUIT.h"
27 
28 #include <QObject>
29 #include <QMap>
30 
31 class QMenu;
32 
33 class SUIT_Desktop;
34 class SUIT_ViewWindow;
35 class SUIT_ViewManager;
36 
37 #ifdef WIN32
38 #pragma warning( disable:4251 )
39 #endif
47 {
48  Q_OBJECT
49 public:
50  enum HotOperation { PAN, ZOOM, ROTATE, FIT_AREA };
51  enum InteractionStyle { STANDARD, KEY_FREE };
52 
53  typedef QMap<HotOperation, Qt::KeyboardModifiers> StatesMap;
54  typedef QMap<HotOperation, Qt::MouseButtons> ButtonsMap;
55 
56  typedef QMap<InteractionStyle, StatesMap> InteractionStyle2StatesMap;
57  typedef QMap<InteractionStyle, ButtonsMap> InteractionStyle2ButtonsMap;
58 
60  virtual ~SUIT_ViewModel();
61 
62  virtual SUIT_ViewWindow* createView( SUIT_Desktop* theDesktop );
63 
64  virtual void setViewManager(SUIT_ViewManager* theViewManager);
65  SUIT_ViewManager* getViewManager() const;
66 
67  virtual QString getType() const { return "SUIT_ViewModel"; }
68 
69  virtual void contextMenuPopup( QMenu* ) {}
70  virtual void applyClippingPlanes( bool theUpdateHatch ) {}
71 
72  static void setHotButton( InteractionStyle theInteractionStyle, HotOperation theOper,
73  Qt::KeyboardModifiers theState, Qt::MouseButtons theButton );
74  static void getHotButton( InteractionStyle theInteractionStyle, HotOperation theOper,
75  Qt::KeyboardModifiers& theState, Qt::MouseButtons& theButton );
76 
77 protected:
79 
80 public:
83 };
84 
85 #ifdef WIN32
86 #pragma warning( default:4251 )
87 #endif
88 
89 extern "C"
90 {
91  typedef SUIT_ViewModel* (*VIEWMODEL_CREATE_FUNC)();
92 }
93 
94 #define VIEWMODEL_CREATE_NAME "createViewModel"
95 
96 #endif
#define SUIT_EXPORT
Definition: SUIT.h:36
For more information see QT documentation.
Definition: SUIT_Application.h:42
Definition: SUIT_Desktop.h:47
Definition: SUIT_ViewManager.h:50
Definition: SUIT_ViewModel.h:47
virtual QString getType() const
Definition: SUIT_ViewModel.h:67
virtual void contextMenuPopup(QMenu *)
Definition: SUIT_ViewModel.h:69
static InteractionStyle2StatesMap myStateMap
Definition: SUIT_ViewModel.h:81
QMap< HotOperation, Qt::MouseButtons > ButtonsMap
Definition: SUIT_ViewModel.h:54
virtual void applyClippingPlanes(bool theUpdateHatch)
Definition: SUIT_ViewModel.h:70
QMap< InteractionStyle, StatesMap > InteractionStyle2StatesMap
Definition: SUIT_ViewModel.h:56
HotOperation
Definition: SUIT_ViewModel.h:50
QMap< InteractionStyle, ButtonsMap > InteractionStyle2ButtonsMap
Definition: SUIT_ViewModel.h:57
QMap< HotOperation, Qt::KeyboardModifiers > StatesMap
Definition: SUIT_ViewModel.h:53
static InteractionStyle2ButtonsMap myButtonMap
Definition: SUIT_ViewModel.h:82
InteractionStyle
Definition: SUIT_ViewModel.h:51
SUIT_ViewManager * myViewManager
Definition: SUIT_ViewModel.h:78
Definition: SUIT_ViewWindow.h:42