]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
QT4: implement the open dialog from the playlist
[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 <QObject>
29 #include <QTimer>
30 #include <QApplication>
31
32 #include "dialogs/interaction.hpp"
33
34 #include <assert.h>
35 #include <vlc/vlc.h>
36 #include <vlc_interface.h>
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 += _("Media Files");      \
46     string += " ( ";                 \
47     string += EXTENSIONS_MEDIA;      \
48     string += ");;";
49 #define ADD_FILTER_VIDEO( string )   \
50     string += _("Video Files");      \
51     string += " ( ";                 \
52     string += EXTENSIONS_VIDEO;      \
53     string += ");;";
54 #define ADD_FILTER_AUDIO( string )   \
55     string += _("Audio Files");      \
56     string += " ( ";                 \
57     string += EXTENSIONS_AUDIO;      \
58     string += ");;";
59 #define ADD_FILTER_PLAYLIST( string )\
60     string += _("Playlist Files");   \
61     string += " ( ";                 \
62     string += EXTENSIONS_PLAYLIST;   \
63     string += ");;";
64 #define ADD_FILTER_SUBTITLE( string )\
65     string += _("Subtitles Files");   \
66     string += " ( ";                 \
67     string += EXTENSIONS_SUBTITLE;   \
68     string += ");;";
69 #define ADD_FILTER_ALL( string )     \
70     string += _("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 playlistDialog();
129     void bookmarksDialog();
130     void mediaInfoDialog();
131     void mediaCodecDialog();
132     void prefsDialog();
133     void extendedDialog();
134     void messagesDialog();
135     void simplePLAppendDialog();
136     void simpleMLAppendDialog();
137     void simpleOpenDialog();
138     void openDialog();
139     void openDialog(int );
140     void openFileDialog();
141     void openNetDialog();
142     void openCaptureDialog();
143     void openDiscDialog();
144     void PLAppendDialog();
145     void MLAppendDialog();
146     void doInteraction( intf_dialog_args_t * );
147     void menuAction( QObject *);
148     void menuUpdateAction( QObject *);
149     void SDMenuAction( QString );
150     void streamingDialog( QString mrl = "", bool b_stream = true );
151     void openThenStreamingDialogs();
152     void openThenTranscodingDialogs();
153     void openPlaylist();
154     void savePlaylist();
155     void PLAppendDir();
156     void MLAppendDir();
157     void quit();
158     void hideMenus();
159     void switchToSkins();
160     void gotoTimeDialog();
161     void vlmDialog();
162     void helpDialog();
163     void aboutDialog();
164 };
165
166 #endif