]> git.sesse.net Git - vlc/commitdiff
* qt: escape key on QVLCFrame and QVLCDialog closes them
authorYoann Peronneau <yoann@videolan.org>
Wed, 28 Mar 2007 18:53:27 +0000 (18:53 +0000)
committerYoann Peronneau <yoann@videolan.org>
Wed, 28 Mar 2007 18:53:27 +0000 (18:53 +0000)
modules/gui/qt4/dialogs/prefs_dialog.cpp
modules/gui/qt4/dialogs/prefs_dialog.hpp
modules/gui/qt4/util/qvlcframe.hpp

index 172d36b19aab26a4305e1744b041d899967177b8..85ca8815895066f0d91da5190cdc0e27d901bdf9 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
  * prefs_dialog.cpp : Preferences
- ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ *****************************************************************************
+ * Copyright (C) 2006-2007 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
  *          Jean-Baptiste Kempf <jb@videolan.org>
- *  
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -19,7 +19,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #include "dialogs/prefs_dialog.hpp"
 #include "dialogs_provider.hpp"
@@ -37,7 +38,6 @@
 #include <QCheckBox>
 #include <QScrollArea>
 #include <QMessageBox>
-#include <QKeyEvent>
 
 
 PrefsDialog *PrefsDialog::instance = NULL;
@@ -266,14 +266,6 @@ void PrefsDialog::reset()
     {
         config_ResetAll( p_intf );
         // TODO reset changes ?
-         config_SaveConfigFile( p_intf, NULL );
-    }
-}
-
-void PrefsDialog::keyPressEvent( QKeyEvent *e )
-{
-    if( e->key() == Qt::Key_Escape )
-    {
-        cancel();
+        config_SaveConfigFile( p_intf, NULL );
     }
 }
index 4a65edc1653e308966678cebdfc349ab919e65fd..17dc7b959511762683296fb02a8326ad61dfc2c2 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * prefs_dialog.hpp : Preferences
- ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ *****************************************************************************
+ * Copyright (C) 2006-2007 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
@@ -19,7 +19,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- ****************************************************************************/
+ *****************************************************************************/
 
 #ifndef _PREFS_DIALOG_H_
 #define _PREFS_DIALOG_H_
@@ -86,7 +86,6 @@ private slots:
      void save();
      void cancel();
      void reset();
-     void keyPressEvent( QKeyEvent * );
 };
 
 #endif
index f0f489291aed773a88d350ff373af72898c411fb..82f9134688ea80e11b543f02055737267c33441b 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * qvlcframe.hpp : A few helpers
- ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ *****************************************************************************
+ * Copyright (C) 2006-2007 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
@@ -18,7 +18,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #ifndef _QVLCFRAME_H_
 #define _QVLCFRAME_H_
@@ -32,6 +33,7 @@
 #include <QMainWindow>
 #include <QPlastiqueStyle>
 #include <QPushButton>
+#include <QKeyEvent>
 #include "qt4.hpp"
 #include <vlc/vlc.h>
 #include <vlc_charset.h>
@@ -104,6 +106,17 @@ protected:
         settings.setValue( "pos", pos() );
         settings.endGroup();
     }
+    void cancel()
+    {
+        hide();
+    }
+    void keyPressEvent( QKeyEvent *keyEvent )
+    {
+        if( keyEvent->key() == Qt::Key_Escape )
+        {
+            cancel();
+        }
+    }
 };
 
 class QVLCDialog : public QDialog
@@ -121,6 +134,18 @@ public:
 
 protected:
     intf_thread_t *p_intf;
+
+    void cancel()
+    {
+        hide();
+    }
+    void keyPressEvent( QKeyEvent *keyEvent )
+    {
+        if( keyEvent->key() == Qt::Key_Escape )
+        {
+            cancel();
+        }
+    }
 };
 
 class QVLCMW : public QMainWindow