Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[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 //////////////////////////////////////////////////////////////////////
22
23 #ifndef SUIT_Accel_h 
24 #define SUIT_Accel_h
25
26 #include "SUIT.h"
27
28 #include <qobject.h>
29 #include <qstring.h>
30 #include <qmap.h>
31
32 class SUIT_EXPORT SUIT_Accel: public QObject
33 {
34   Q_OBJECT
35
36 public:
37   enum Actions { 
38     PanLeft = 1, 
39     PanRight, 
40     PanUp, 
41     PanDown, 
42     ZoomIn, 
43     ZoomOut, 
44     ZoomFit, 
45     RotateLeft, 
46     RotateRight, 
47     RotateUp, 
48     RotateDown, 
49     LastAction 
50   };
51
52 public:
53   static SUIT_Accel* getAccel();
54
55   void setActionKey( const int action, const int key, const QString& type );
56   void unsetActionKey( const int key, const QString& type );
57
58 protected:
59   bool eventFilter( QObject *, QEvent * );
60
61 private:
62   SUIT_Accel();
63
64   int getAccelKey( QEvent* ); // returns key pressed if 1) event was KeyPress 
65                               // 2) pressed key is a registered accelerator 
66
67   typedef QMap<int, int> IdActionMap; // key - to - action_id map
68   typedef QMap<QString, IdActionMap> ViewerTypeIdActionMap; // viewer_type - to - IdActionMap
69   ViewerTypeIdActionMap myMap;
70
71   QMap<int, bool> myOptMap; // key - to - <not_used> map, used for optimazation.  all registered keys (accelerators)
72                             // are stored in this map.
73
74   static SUIT_Accel* myself;
75 };
76
77 #endif