]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/qvlcapp.hpp
Qt: use DIR_SEP for BDMV and VIDEO_TS detection
[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 #if defined(Q_OS_WIN)
32 #   include "qt4.hpp"
33 #   include <windows.h>
34 #   include "input_manager.hpp"
35 #endif
36
37 class QVLCApp : public QApplication
38 {
39     Q_OBJECT
40
41 private slots:
42     void doQuit()
43     {
44         closeAllWindows();
45         quit();
46     }
47
48 public:
49     QVLCApp( int & argc, char ** argv ) : QApplication( argc, argv, true )
50     {
51         connect( this, SIGNAL(quitSignal()), this, SLOT(doQuit()) );
52     }
53
54     static void triggerQuit()
55     {
56         QVLCApp *app = qobject_cast<QVLCApp*>( instance() );
57         if( app )
58             emit app->quitSignal();
59     }
60
61 signals:
62     void quitSignal();
63
64 };
65 #endif