]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
Qt4 - Open: Capture Tab added. Still almost empty, but well, this is coming after. :D
[vlc] / modules / gui / qt4 / dialogs_provider.hpp
1 /*****************************************************************************
2  * dialogs_provider.hpp : Dialogs provider
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@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 _DIALOGS_PROVIDER_H_
24 #define _DIALOGS_PROVIDER_H_
25
26 #include <QObject>
27 #include <QTimer>
28 #include <QApplication>
29
30 #include "dialogs/interaction.hpp"
31
32 #include <assert.h>
33 #include <vlc/vlc.h>
34 #include <vlc_interface.h>
35
36 class QEvent;
37 class QSignalMapper;
38 class QVLCMenu;
39
40 class DialogsProvider : public QObject
41 {
42     Q_OBJECT;
43 public:
44     static DialogsProvider *getInstance()
45     {
46         assert( instance );
47         return instance;
48     }
49     static DialogsProvider *getInstance( intf_thread_t *p_intf )
50     {
51         if( !instance )
52             instance = new DialogsProvider( p_intf );
53         return instance;
54     }
55     static void killInstance()
56     {
57         if( instance ) delete instance;
58         instance=NULL;
59     }
60     virtual ~DialogsProvider();
61     QTimer *fixed_timer;
62
63     QStringList showSimpleOpen( QString help = QString(), bool all = true,
64                                 bool video = true, bool audio = true,
65                                 bool subs = true, bool pls = true );
66 protected:
67     friend class QVLCMenu;
68     QSignalMapper *menusMapper;
69     QSignalMapper *menusUpdateMapper;
70     QSignalMapper *SDMapper;
71     void customEvent( QEvent *);
72 private:
73     DialogsProvider( intf_thread_t *);
74     intf_thread_t *p_intf;
75     static DialogsProvider *instance;
76     void addFromSimple( bool, bool );
77
78 public slots:
79     void playlistDialog();
80     void bookmarksDialog();
81     void mediaInfoDialog();
82     void prefsDialog();
83     void extendedDialog();
84     void messagesDialog();
85     void simplePLAppendDialog();
86     void simpleMLAppendDialog();
87     void simpleOpenDialog();
88     void openDialog();
89     void openDialog(int );
90     void openFileDialog();
91     void openNetDialog();
92     void openCaptureDialog();
93     void openDiscDialog();
94     void PLAppendDialog();
95     void MLAppendDialog();
96     void popupMenu( int );
97     void doInteraction( intf_dialog_args_t * );
98     void menuAction( QObject *);
99     void menuUpdateAction( QObject *);
100     void SDMenuAction( QString );
101     void streamingDialog();
102     void openPlaylist();
103     void savePlaylist();
104     void PLAppendDir();
105     void MLAppendDir();
106     void quit();
107     void switchToSkins();
108     void helpDialog();
109     void aboutDialog();
110 };
111
112 #endif