Salome HOME
IPAL0051790: TC7.2.0: SIGSEGV fatal error after close study
[modules/gui.git] / src / SUIT / SUIT_Accel.h
index 0c72053da913f40f105a395c88f1b38da0e96bb1..c5fe5c4ac1c4a711701ac5bf0b1d05d40965b767 100644 (file)
@@ -1,41 +1,80 @@
-// SUIT_Accel.h: interface for the SUIT_Accel class.
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-//////////////////////////////////////////////////////////////////////
 
-#ifndef SUIT_Accel_h 
-#define SUIT_Accel_h
+// SUIT_Accel.h: interface for the SUIT_Accel class.
+//
+#ifndef SUIT_ACELL_H
+#define SUIT_ACELL_H
 
 #include "SUIT.h"
 
-#include <qobject.h>
-#include <qstringlist.h>
-#include <qmap.h>
-
-class QAccel;
-class SUIT_Desktop;
+#include <QMap>
+#include <QObject>
+#include <QString>
 
 class SUIT_EXPORT SUIT_Accel: public QObject
 {
   Q_OBJECT
 
 public:
-  SUIT_Accel( SUIT_Desktop* theDesktop );
-  virtual ~SUIT_Accel();
+  enum Actions { 
+    PanLeft = 1, 
+    PanRight, 
+    PanUp, 
+    PanDown, 
+    ZoomIn, 
+    ZoomOut, 
+    ZoomFit, 
+    RotateLeft, 
+    RotateRight, 
+    RotateUp, 
+    RotateDown, 
+    LastAction 
+  };
+
+public:
+  static SUIT_Accel* getAccel();
 
-  enum Actions { PanLeft = 1, PanRight, PanUp, PanDown, ZoomIn, ZoomOut, ZoomFit, RotateLeft, RotateRight, RotateUp, RotateDown, UserAction };
   void setActionKey( const int action, const int key, const QString& type );
+  void unsetActionKey( const int key, const QString& type );
 
-protected slots:
-  void onActivated( int );
+protected:
+  bool eventFilter( QObject *, QEvent * );
 
 private:
-  QAccel* myAccel; 
-  SUIT_Desktop* myDesktop;
+  SUIT_Accel();
+
+  int getAccelKey( QEvent* );
+
+  typedef QMap<int, int> IdActionMap; //!< maps key to action id
+  typedef QMap<QString, IdActionMap> 
+               ViewerTypeIdActionMap; //!< maps viewer type to IdActionMap
+  ViewerTypeIdActionMap myMap;        //!< viewer actions map
+
+  //! Maps key to <not_used> flag map, used for optimization.
+  //! All registered keys (accelerators) are stored in this map.
+  QMap<int, bool> myOptMap;
 
-  typedef QMap<int, int> KeyActionMap; // key-to-action map
-  typedef QMap<int, QStringList> ActionViewerTypesMap; // key=action id
-  KeyActionMap myKeyActionMap;
-  ActionViewerTypesMap myActionViewerTypesMap;
+  static SUIT_Accel* myself;
 };
 
 #endif