]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
Disable update checking per default, re-enable with --enable-update-check
[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 ADD_FILTER_MEDIA( string )     \
39     string += qtr( "Media Files" );    \
40     string += " ( ";                   \
41     string += EXTENSIONS_MEDIA;        \
42     string += ");;";
43 #define ADD_FILTER_VIDEO( string )     \
44     string += qtr( "Video Files" );    \
45     string += " ( ";                   \
46     string += EXTENSIONS_VIDEO;        \
47     string += ");;";
48 #define ADD_FILTER_AUDIO( string )     \
49     string += qtr( "Audio Files" );    \
50     string += " ( ";                   \
51     string += EXTENSIONS_AUDIO;        \
52     string += ");;";
53 #define ADD_FILTER_PLAYLIST( string )  \
54     string += qtr( "Playlist Files" ); \
55     string += " ( ";                   \
56     string += EXTENSIONS_PLAYLIST;     \
57     string += ");;";
58 #define ADD_FILTER_SUBTITLE( string )  \
59     string += qtr( "Subtitles Files" );\
60     string += " ( ";                   \
61     string += EXTENSIONS_SUBTITLE;     \
62     string += ");;";
63 #define ADD_FILTER_ALL( string )       \
64     string += qtr( "All Files" );      \
65     string += " (*.*)";
66
67 enum {
68     EXT_FILTER_MEDIA     =  0x01,
69     EXT_FILTER_VIDEO     =  0x02,
70     EXT_FILTER_AUDIO     =  0x04,
71     EXT_FILTER_PLAYLIST  =  0x08,
72     EXT_FILTER_SUBTITLE  =  0x10,
73 };
74
75 enum {
76     OPEN_FILE_TAB,
77     OPEN_DISC_TAB,
78     OPEN_NETWORK_TAB,
79     OPEN_CAPTURE_TAB,
80     OPEN_TAB_MAX
81 };
82
83 enum {
84     OPEN_AND_PLAY,
85     OPEN_AND_STREAM,
86     OPEN_AND_SAVE,
87     OPEN_AND_ENQUEUE
88 };
89
90 class QEvent;
91 class QSignalMapper;
92 class QVLCMenu;
93
94 class DialogsProvider : public QObject
95 {
96     Q_OBJECT;
97 public:
98     static DialogsProvider *getInstance()
99     {
100         assert( instance );
101         return instance;
102     }
103     static DialogsProvider *getInstance( intf_thread_t *p_intf )
104     {
105         if( !instance )
106             instance = new DialogsProvider( p_intf );
107         return instance;
108     }
109     static void killInstance()
110     {
111         if( instance ) delete instance;
112         instance=NULL;
113     }
114     virtual ~DialogsProvider();
115     QTimer *fixed_timer;
116
117     QStringList showSimpleOpen( QString help = QString(),
118                                 int filters = EXT_FILTER_MEDIA |
119                                 EXT_FILTER_VIDEO | EXT_FILTER_AUDIO |
120                                 EXT_FILTER_PLAYLIST,
121                                 QString path = QString() );
122 protected:
123     friend class QVLCMenu;
124     QSignalMapper *menusMapper;
125     QSignalMapper *menusUpdateMapper;
126     QSignalMapper *SDMapper;
127     void customEvent( QEvent *);
128 private:
129     DialogsProvider( intf_thread_t *);
130     intf_thread_t *p_intf;
131     static DialogsProvider *instance;
132     void addFromSimple( bool, bool );
133
134 public slots:
135     void doInteraction( intf_dialog_args_t * );
136     void menuAction( QObject *);
137     void menuUpdateAction( QObject * );
138     void SDMenuAction( QString );
139
140     void playlistDialog();
141     void bookmarksDialog();
142     void mediaInfoDialog();
143     void mediaCodecDialog();
144     void prefsDialog();
145     void extendedDialog();
146     void messagesDialog();
147     void vlmDialog();
148     void helpDialog();
149 #ifdef UPDATE_CHECK
150     void updateDialog();
151 #endif
152     void aboutDialog();
153     void gotoTimeDialog();
154     void podcastConfigureDialog();
155
156     void simpleOpenDialog();
157     void simplePLAppendDialog();
158     void simpleMLAppendDialog();
159
160     void openDialog();
161     void openDialog( int );
162     void openDiscDialog();
163     void openFileDialog();
164     void openNetDialog();
165     void openCaptureDialog();
166
167     void PLAppendDialog();
168     void MLAppendDialog();
169     void PLAppendDir();
170     void MLAppendDir();
171
172     void streamingDialog( QString mrl = "", bool b_stream = true );
173     void openThenStreamingDialogs();
174     void openThenTranscodingDialogs();
175
176     void openAPlaylist();
177     void saveAPlaylist();
178
179     void switchToSkins();
180     void quit();
181 };
182
183 #endif