]> SALOME platform Git repositories - modules/gui.git/blob - src/SUIT/SUIT_Accel.h
Salome HOME
b3b0886f1d7e615520e911a025b317af6d50ccda
[modules/gui.git] / src / SUIT / SUIT_Accel.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 // SUIT_Accel.h: interface for the SUIT_Accel class.
23 //
24 #ifndef SUIT_ACELL_H
25 #define SUIT_ACELL_H
26
27 #include "SUIT.h"
28
29 #include <QMap>
30 #include <QObject>
31 #include <QString>
32
33 class SUIT_EXPORT SUIT_Accel: public QObject
34 {
35   Q_OBJECT
36
37 public:
38   enum Actions { 
39     PanLeft = 1, 
40     PanRight, 
41     PanUp, 
42     PanDown, 
43     ZoomIn, 
44     ZoomOut, 
45     ZoomFit, 
46     RotateLeft, 
47     RotateRight, 
48     RotateUp, 
49     RotateDown, 
50     LastAction 
51   };
52
53 public:
54   static SUIT_Accel* getAccel();
55
56   void setActionKey( const int action, const int key, const QString& type );
57   void unsetActionKey( const int key, const QString& type );
58
59 protected:
60   bool eventFilter( QObject *, QEvent * );
61
62 private:
63   SUIT_Accel();
64
65   int getAccelKey( QEvent* );
66
67   typedef QMap<int, int> IdActionMap; //!< maps key to action id
68   typedef QMap<QString, IdActionMap> 
69                ViewerTypeIdActionMap; //!< maps viewer type to IdActionMap
70   ViewerTypeIdActionMap myMap;        //!< viewer actions map
71
72   //! Maps key to <not_used> flag map, used for optimization.
73   //! All registered keys (accelerators) are stored in this map.
74   QMap<int, bool> myOptMap;
75
76   static SUIT_Accel* myself;
77 };
78
79 #endif