]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/qvlcapp.hpp
b2a2ad61a55dfd2466e3bf872383b6e5d5d4b0aa
[vlc] / modules / gui / qt4 / util / qvlcapp.hpp
1 /*****************************************************************************
2  * qvlcapp.hpp : A few helpers
3  *****************************************************************************
4  * Copyright (C) 2008 the VideoLAN team
5  * $Id$
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
24
25 #ifndef _QVLC_APP_H_
26 #define _QVLC_APP_H_
27
28 #include <QApplication>
29 #include <QEvent>
30
31 class QVLCApp : public QApplication
32 {
33 public:
34     QVLCApp( int & argc, char ** argv ) : QApplication( argc, argv, true ) { }
35
36 #if defined (Q_WS_X11)
37      QVLCApp( Display *dp, int & argc, char ** argv )
38          : QApplication( dp, argc, argv )
39      {
40      }
41 #endif
42
43 #if defined(Q_WS_WIN)
44 protected:
45     virtual bool winEventFilter( MSG *msg, long *result )
46     {
47         switch( msg->message )
48         {
49             case 0x0319: /* WM_APPCOMMAND 0x0319 */
50                 DefWindowProc( msg->hwnd, msg->message,
51                                msg->wParam, msg->lParam );
52                 break;
53         }
54         return false;
55     }
56 #endif
57 };
58
59 #endif