]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.hpp
Qt4 - use enums instead of defines when you can.
[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 #define EXT_FILTER_MEDIA        0x01
68 #define EXT_FILTER_VIDEO        0x02
69 #define EXT_FILTER_AUDIO        0x04
70 #define EXT_FILTER_PLAYLIST     0x08
71 #define EXT_FILTER_SUBTITLE     0x10
72
73 enum {
74     OPEN_FILE_TAB,
75     OPEN_DISC_TAB,
76     OPEN_NETWORK_TAB,
77     OPEN_CAPTURE_TAB
78 };
79
80 enum {
81     OPEN_AND_PLAY,
82     OPEN_AND_STREAM,
83     OPEN_AND_SAVE,
84     ENQUEUE
85 };
86
87 class QEvent;
88 class QSignalMapper;
89 class QVLCMenu;
90
91 class DialogsProvider : public QObject
92 {
93     Q_OBJECT;
94 public:
95     static DialogsProvider *getInstance()
96     {
97         assert( instance );
98         return instance;
99     }
100     static DialogsProvider *getInstance( intf_thread_t *p_intf )
101     {
102         if( !instance )
103             instance = new DialogsProvider( p_intf );
104         return instance;
105     }
106     static void killInstance()
107     {
108         if( instance ) delete instance;
109         instance=NULL;
110     }
111     virtual ~DialogsProvider();
112     QTimer *fixed_timer;
113
114     QStringList showSimpleOpen( QString help = QString(),
115                                 int filters = EXT_FILTER_MEDIA |
116                                 EXT_FILTER_VIDEO | EXT_FILTER_AUDIO |
117                                 EXT_FILTER_PLAYLIST,
118                                 QString path = QString() );
119 protected:
120     friend class QVLCMenu;
121     QSignalMapper *menusMapper;
122     QSignalMapper *menusUpdateMapper;
123     QSignalMapper *SDMapper;
124     void customEvent( QEvent *);
125 private:
126     DialogsProvider( intf_thread_t *);
127     intf_thread_t *p_intf;
128     static DialogsProvider *instance;
129     void addFromSimple( bool, bool );
130
131 public slots:
132     void doInteraction( intf_dialog_args_t * );
133     void menuAction( QObject *);
134     void menuUpdateAction( QObject *);
135     void SDMenuAction( QString );
136
137     void playlistDialog();
138     void bookmarksDialog();
139     void mediaInfoDialog();
140     void mediaCodecDialog();
141     void prefsDialog();
142     void extendedDialog();
143     void messagesDialog();
144     void vlmDialog();
145     void helpDialog();
146     void aboutDialog();
147     void gotoTimeDialog();
148
149     void simpleOpenDialog();
150     void simplePLAppendDialog();
151     void simpleMLAppendDialog();
152
153     void openDialog();
154     void openDialog( int );
155     void openDiscDialog();
156     void openFileDialog();
157     void openNetDialog();
158     void openCaptureDialog();
159
160     void PLAppendDialog();
161     void MLAppendDialog();
162     void PLAppendDir();
163     void MLAppendDir();
164
165     void streamingDialog( QString mrl = "", bool b_stream = true );
166     void openThenStreamingDialogs();
167     void openThenTranscodingDialogs();
168
169     void openPlaylist();
170     void savePlaylist();
171
172     void podcastConfigureDialog();
173
174     void switchToSkins();
175     void quit();
176 };
177
178 #endif