]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
Qt: remove isAlive from DialogProvider
[vlc] / modules / gui / qt4 / dialogs_provider.hpp
1 /*****************************************************************************
2  * dialogs_provider.hpp : Dialogs provider
3  ****************************************************************************
4  * Copyright (C) 2006-2008 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 QVLC_DIALOGS_PROVIDER_H_
26 #define QVLC_DIALOGS_PROVIDER_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <assert.h>
33
34 #include "qt4.hpp"
35
36 #include "dialogs/open.hpp"
37 #include <QObject>
38 #include <QStringList>
39
40 #define TITLE_EXTENSIONS_MEDIA qtr( "Media Files" )
41 #define TITLE_EXTENSIONS_VIDEO qtr( "Video Files" )
42 #define TITLE_EXTENSIONS_AUDIO qtr( "Audio Files" )
43 #define TITLE_EXTENSIONS_PLAYLIST qtr( "Playlist Files" )
44 #define TITLE_EXTENSIONS_SUBTITLE qtr( "Subtitle Files" )
45 #define TITLE_EXTENSIONS_ALL qtr( "All Files" )
46 #define EXTENSIONS_ALL "*"
47 #define ADD_EXT_FILTER( string, type ) \
48     string = string + QString("%1 ( %2 );;") \
49             .arg( TITLE_##type ) \
50             .arg( QString( type ) );
51
52 enum {
53     EXT_FILTER_MEDIA     =  0x01,
54     EXT_FILTER_VIDEO     =  0x02,
55     EXT_FILTER_AUDIO     =  0x04,
56     EXT_FILTER_PLAYLIST  =  0x08,
57     EXT_FILTER_SUBTITLE  =  0x10,
58 };
59
60 class QEvent;
61 class QSignalMapper;
62 class VLCMenuBar;
63
64 class DialogsProvider : public QObject
65 {
66     Q_OBJECT
67     friend class VLCMenuBar;
68
69 public:
70     static DialogsProvider *getInstance()
71     {
72         assert( instance );
73         return instance;
74     }
75     static DialogsProvider *getInstance( intf_thread_t *p_intf )
76     {
77         if( !instance )
78             instance = new DialogsProvider( p_intf );
79         return instance;
80     }
81     static void killInstance()
82     {
83         delete instance;
84         instance = NULL;
85     }
86
87     QStringList showSimpleOpen( const QString& help = QString(),
88                                 int filters = EXT_FILTER_MEDIA |
89                                 EXT_FILTER_VIDEO | EXT_FILTER_AUDIO |
90                                 EXT_FILTER_PLAYLIST,
91                                 const QString& path = QString() );
92     bool isDying() { return b_isDying; }
93 protected:
94     QSignalMapper *menusMapper;
95     QSignalMapper *menusUpdateMapper;
96     QSignalMapper *SDMapper;
97     void customEvent( QEvent *);
98
99 private:
100     DialogsProvider( intf_thread_t *);
101     virtual ~DialogsProvider();
102     static DialogsProvider *instance;
103
104     intf_thread_t *p_intf;
105     QWidget* root;
106     bool b_isDying;
107
108     void openDialog( int );
109     void addFromSimple( bool, bool );
110     void saveAPlaylist(playlist_t *p_playlist, playlist_item_t *p_node);
111
112 public slots:
113     void playMRL( const QString & );
114
115     void playlistDialog();
116     void bookmarksDialog();
117     void mediaInfoDialog();
118     void mediaCodecDialog();
119     void prefsDialog();
120     void extendedDialog();
121     void synchroDialog();
122     void messagesDialog();
123 #ifdef ENABLE_VLM
124     void vlmDialog();
125 #endif
126     void helpDialog();
127 #ifdef UPDATE_CHECK
128     void updateDialog();
129 #endif
130     void aboutDialog();
131     void gotoTimeDialog();
132     void podcastConfigureDialog();
133     void toolbarDialog();
134     void pluginDialog();
135     void epgDialog();
136
137     void openFileGenericDialog( intf_dialog_args_t * );
138
139     void simpleOpenDialog();
140
141     void openDialog();
142     void openDiscDialog();
143     void openFileDialog();
144     void openUrlDialog();
145     void openNetDialog();
146     void openCaptureDialog();
147
148     QString getDirectoryDialog();
149     void PLAppendDialog( int tab = OPEN_FILE_TAB );
150     void MLAppendDialog( int tab = OPEN_FILE_TAB );
151
152     void PLOpenDir();
153     void PLAppendDir();
154
155     void streamingDialog( QWidget *parent, const QString& mrl, bool b_stream = true,
156                           QStringList options = QStringList("") );
157     void openAndStreamingDialogs();
158     void openAndTranscodingDialogs();
159
160     void openAPlaylist();
161     void savePlayingToPlaylist();
162     void saveRecentsToPlaylist();
163
164     void loadSubtitlesFile();
165
166     void quit();
167 private slots:
168     void menuAction( QObject *);
169     void menuUpdateAction( QObject * );
170     void SDMenuAction( const QString& );
171 signals:
172     void  toolBarConfUpdated();
173 };
174
175 class DialogEvent : public QEvent
176 {
177 public:
178     static const QEvent::Type DialogEvent_Type;
179     DialogEvent( int _i_dialog, int _i_arg, intf_dialog_args_t *_p_arg ) :
180                  QEvent( DialogEvent_Type )
181     {
182         i_dialog = _i_dialog;
183         i_arg = _i_arg;
184         p_arg = _p_arg;
185     }
186
187     int i_arg, i_dialog;
188     intf_dialog_args_t *p_arg;
189 };
190
191
192 #endif