]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
Qt4 - Small open dialog refactoring for use for vlm dialog.
[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     SELECT
89 };
90
91 class QEvent;
92 class QSignalMapper;
93 class QVLCMenu;
94
95 class DialogsProvider : public QObject
96 {
97     Q_OBJECT;
98 public:
99     static DialogsProvider *getInstance()
100     {
101         assert( instance );
102         return instance;
103     }
104     static DialogsProvider *getInstance( intf_thread_t *p_intf )
105     {
106         if( !instance )
107             instance = new DialogsProvider( p_intf );
108         return instance;
109     }
110     static void killInstance()
111     {
112         if( instance ) delete instance;
113         instance=NULL;
114     }
115     virtual ~DialogsProvider();
116     QTimer *fixed_timer;
117
118     QStringList showSimpleOpen( QString help = QString(),
119                                 int filters = EXT_FILTER_MEDIA |
120                                 EXT_FILTER_VIDEO | EXT_FILTER_AUDIO |
121                                 EXT_FILTER_PLAYLIST,
122                                 QString path = QString() );
123 protected:
124     friend class QVLCMenu;
125     QSignalMapper *menusMapper;
126     QSignalMapper *menusUpdateMapper;
127     QSignalMapper *SDMapper;
128     void customEvent( QEvent *);
129 private:
130     DialogsProvider( intf_thread_t *);
131     intf_thread_t *p_intf;
132     static DialogsProvider *instance;
133     void addFromSimple( bool, bool );
134
135 public slots:
136     void doInteraction( intf_dialog_args_t * );
137     void menuAction( QObject *);
138     void menuUpdateAction( QObject * );
139     void SDMenuAction( QString );
140
141     void playlistDialog();
142     void bookmarksDialog();
143     void mediaInfoDialog();
144     void mediaCodecDialog();
145     void prefsDialog();
146     void extendedDialog();
147     void messagesDialog();
148     void vlmDialog();
149     void helpDialog();
150 #ifdef UPDATE_CHECK
151     void updateDialog();
152 #endif
153     void aboutDialog();
154     void gotoTimeDialog();
155     void podcastConfigureDialog();
156
157     void simpleOpenDialog();
158     void simplePLAppendDialog();
159     void simpleMLAppendDialog();
160
161     void openDialog();
162     void openDialog( int );
163     void openDiscDialog();
164     void openFileDialog();
165     void openNetDialog();
166     void openCaptureDialog();
167
168     void PLAppendDialog();
169     void MLAppendDialog();
170     void PLAppendDir();
171     void MLAppendDir();
172
173     void streamingDialog( QString mrl = "", bool b_stream = true );
174     void openThenStreamingDialogs();
175     void openThenTranscodingDialogs();
176
177     void openAPlaylist();
178     void saveAPlaylist();
179
180     void switchToSkins();
181     void quit();
182 };
183
184 #endif