Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/gui.git] / src / SUIT / SUIT_Accel.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/
18 //
19 // SUIT_Accel.h: interface for the SUIT_Accel class.
20
21 #ifndef SUIT_Accel_h 
22 #define SUIT_Accel_h
23
24 #include "SUIT.h"
25
26 #include <qobject.h>
27 #include <qstring.h>
28 #include <qmap.h>
29
30 /*!
31   \class SUIT_Accel
32   Manager of keyboard accelerator bindings
33 */
34 class SUIT_EXPORT SUIT_Accel: public QObject
35 {
36   Q_OBJECT
37
38 public:
39   enum Actions { 
40     PanLeft = 1, 
41     PanRight, 
42     PanUp, 
43     PanDown, 
44     ZoomIn, 
45     ZoomOut, 
46     ZoomFit, 
47     RotateLeft, 
48     RotateRight, 
49     RotateUp, 
50     RotateDown, 
51     LastAction 
52   };
53
54 public:
55   static SUIT_Accel* getAccel();
56
57   void setActionKey( const int action, const int key, const QString& type );
58   void unsetActionKey( const int key, const QString& type );
59
60 protected:
61   bool eventFilter( QObject *, QEvent * );
62
63 private:
64   SUIT_Accel();
65
66   int getAccelKey( QEvent* ); // returns key pressed if 1) event was KeyPress 
67                               // 2) pressed key is a registered accelerator 
68
69   typedef QMap<int, int> IdActionMap; // key - to - action_id map
70   typedef QMap<QString, IdActionMap> ViewerTypeIdActionMap; // viewer_type - to - IdActionMap
71   ViewerTypeIdActionMap myMap;
72
73   QMap<int, bool> myOptMap; // key - to - <not_used> map, used for optimazation.  all registered keys (accelerators)
74                             // are stored in this map.
75
76   static SUIT_Accel* myself;
77 };
78
79 #endif