]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
Add a podcast configuration dialog to the Qt4 interface/dialogs provider.
[vlc] / modules / gui / qt4 / dialogs_provider.hpp
1 /*****************************************************************************
2  * dialogs_provider.hpp : Dialogs provider
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _DIALOGS_PROVIDER_H_
26 #define _DIALOGS_PROVIDER_H_
27
28 #include <assert.h>
29 #include <vlc/vlc.h>
30 #include <vlc_interface.h>
31
32 #include "dialogs/interaction.hpp"
33
34 #include <QObject>
35 #include <QTimer>
36 #include <QApplication>
37
38 #define EXT_FILTER_MEDIA        0x01
39 #define EXT_FILTER_VIDEO        0x02
40 #define EXT_FILTER_AUDIO        0x04
41 #define EXT_FILTER_PLAYLIST     0x08
42 #define EXT_FILTER_SUBTITLE     0x10
43
44 #define ADD_FILTER_MEDIA( string )   \
45     string += qtr("Media Files");      \
46     string += " ( ";                 \
47     string += EXTENSIONS_MEDIA;      \
48     string += ");;";
49 #define ADD_FILTER_VIDEO( string )   \
50     string += qtr("Video Files");      \
51     string += " ( ";                 \
52     string += EXTENSIONS_VIDEO;      \
53     string += ");;";
54 #define ADD_FILTER_AUDIO( string )   \
55     string += qtr("Audio Files");      \
56     string += " ( ";                 \
57     string += EXTENSIONS_AUDIO;      \
58     string += ");;";
59 #define ADD_FILTER_PLAYLIST( string )\
60     string += qtr("Playlist Files");   \
61     string += " ( ";                 \
62     string += EXTENSIONS_PLAYLIST;   \
63     string += ");;";
64 #define ADD_FILTER_SUBTITLE( string )\
65     string += qtr("Subtitles Files");   \
66     string += " ( ";                 \
67     string += EXTENSIONS_SUBTITLE;   \
68     string += ");;";
69 #define ADD_FILTER_ALL( string )     \
70     string += qtr("All Files");        \
71     string += " (*.*)";
72
73 #define OPEN_FILE_TAB           0x0
74 #define OPEN_DISC_TAB           0x1
75 #define OPEN_NETWORK_TAB        0x2
76 #define OPEN_CAPTURE_TAB        0x3
77
78 #define OPEN_AND_PLAY           0x0
79 #define OPEN_AND_STREAM         0x1
80 #define OPEN_AND_SAVE           0x2
81 #define ENQUEUE                 0x4
82
83 class QEvent;
84 class QSignalMapper;
85 class QVLCMenu;
86
87 class DialogsProvider : public QObject
88 {
89     Q_OBJECT;
90 public:
91     static DialogsProvider *getInstance()
92     {
93         assert( instance );
94         return instance;
95     }
96     static DialogsProvider *getInstance( intf_thread_t *p_intf )
97     {
98         if( !instance )
99             instance = new DialogsProvider( p_intf );
100         return instance;
101     }
102     static void killInstance()
103     {
104         if( instance ) delete instance;
105         instance=NULL;
106     }
107     virtual ~DialogsProvider();
108     QTimer *fixed_timer;
109
110     QStringList showSimpleOpen( QString help = QString(),
111                                 int filters = EXT_FILTER_MEDIA |
112                                 EXT_FILTER_VIDEO | EXT_FILTER_AUDIO |
113                                 EXT_FILTER_PLAYLIST,
114                                 QString path = QString() );
115 protected:
116     friend class QVLCMenu;
117     QSignalMapper *menusMapper;
118     QSignalMapper *menusUpdateMapper;
119     QSignalMapper *SDMapper;
120     void customEvent( QEvent *);
121 private:
122     DialogsProvider( intf_thread_t *);
123     intf_thread_t *p_intf;
124     static DialogsProvider *instance;
125     void addFromSimple( bool, bool );
126
127 public slots:
128     void doInteraction( intf_dialog_args_t * );
129     void menuAction( QObject *);
130     void menuUpdateAction( QObject *);
131     void SDMenuAction( QString );
132
133     void playlistDialog();
134     void bookmarksDialog();
135     void mediaInfoDialog();
136     void mediaCodecDialog();
137     void prefsDialog();
138     void extendedDialog();
139     void messagesDialog();
140     void vlmDialog();
141     void helpDialog();
142     void aboutDialog();
143     void gotoTimeDialog();
144
145     void simpleOpenDialog();
146     void simplePLAppendDialog();
147     void simpleMLAppendDialog();
148
149     void openDialog();
150     void openDialog( int );
151     void openDiscDialog();
152     void openFileDialog();
153     void openNetDialog();
154     void openCaptureDialog();
155     void openDirDialog();
156
157     void PLAppendDialog();
158     void MLAppendDialog();
159     void PLAppendDir();
160     void MLAppendDir();
161
162     void streamingDialog( QString mrl = "", bool b_stream = true );
163     void openThenStreamingDialogs();
164     void openThenTranscodingDialogs();
165
166     void openPlaylist();
167     void savePlaylist();
168
169     void podcastConfigureDialog();
170
171     void switchToSkins();
172     void quit();
173 };
174
175 #endif