qvlcapp.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * qvlcapp.hpp : A few helpers
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 the VideoLAN team
  5.  * $Id: f43c1b526a16b4bc58f5c44cada8840ddcf74328 $
  6.  *
  7.  * Authors: Jean-Baptiste Kempf <jb@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef _QVLC_APP_H_
  24. #define _QVLC_APP_H_
  25. #include <QApplication>
  26. #include <QEvent>
  27. #if defined(Q_WS_WIN)
  28. #   include <windows.h>
  29. #endif
  30. class QVLCApp : public QApplication
  31. {
  32.     Q_OBJECT
  33. public:
  34.     QVLCApp( int & argc, char ** argv ) : QApplication( argc, argv, true )
  35.     {
  36.         connect( this, SIGNAL(quitSignal()), this, SLOT(quit()) );
  37.     }
  38.     static void triggerQuit()
  39.     {
  40.          QVLCApp *app = qobject_cast<QVLCApp*>( instance() );
  41.          if ( app )
  42.              emit app->quitSignal();
  43.     }
  44. #if defined (Q_WS_X11)
  45.      QVLCApp( Display *dp, int & argc, char ** argv )
  46.          : QApplication( dp, argc, argv )
  47.      {
  48.         connect( this, SIGNAL(quitSignal()), this, SLOT(quit()) );
  49.      }
  50. #endif
  51. #if defined(Q_WS_WIN)
  52. protected:
  53.     virtual bool winEventFilter( MSG *msg, long *result )
  54.     {
  55.         switch( msg->message )
  56.         {
  57.             case 0x0319: /* WM_APPCOMMAND 0x0319 */
  58.                 DefWindowProc( msg->hwnd, msg->message,
  59.                                msg->wParam, msg->lParam );
  60.                 break;
  61.         }
  62.         return false;
  63.     }
  64. #endif
  65. signals:
  66.     void quitSignal();
  67. };
  68. #endif