]> git.sesse.net Git - vlc/blob - include/vlc_interface.h
Add extensions to open dialogs
[vlc] / include / vlc_interface.h
1 /*****************************************************************************
2  * vlc_interface.h: interface access for other threads
3  * This library provides basic functions for threads to interact with user
4  * interface, such as message output.
5  *****************************************************************************
6  * Copyright (C) 1999, 2000 VLC authors and VideoLAN
7  * $Id$
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU Lesser General Public License as published by
13  * the Free Software Foundation; either version 2.1 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef VLC_INTF_H_
27 #define VLC_INTF_H_
28
29 # ifdef __cplusplus
30 extern "C" {
31 # endif
32
33 typedef struct intf_dialog_args_t intf_dialog_args_t;
34
35 /**
36  * \file
37  * This file contains structures and function prototypes for
38  * interface management in vlc
39  */
40
41 /**
42  * \defgroup vlc_interface Interface
43  * These functions and structures are for interface management
44  * @{
45  */
46
47 typedef struct intf_sys_t intf_sys_t;
48
49 /** Describe all interface-specific data of the interface thread */
50 typedef struct intf_thread_t
51 {
52     VLC_COMMON_MEMBERS
53
54     struct intf_thread_t *p_next; /** LibVLC interfaces book keeping */
55     vlc_thread_t thread; /** LibVLC thread */
56     /* Thread properties and locks */
57 #if defined( __APPLE__ )
58     bool          b_should_run_on_first_thread;
59 #endif
60
61     /* Specific interfaces */
62     intf_sys_t *        p_sys;                          /** system interface */
63
64     /** Interface module */
65     module_t *   p_module;
66     void      ( *pf_run )    ( struct intf_thread_t * ); /** Run function */
67
68     /** Specific for dialogs providers */
69     void ( *pf_show_dialog ) ( struct intf_thread_t *, int, int,
70                                intf_dialog_args_t * );
71
72     config_chain_t *p_cfg;
73 } intf_thread_t;
74
75 /** \brief Arguments passed to a dialogs provider
76  *  This describes the arguments passed to the dialogs provider. They are
77  *  mainly used with INTF_DIALOG_FILE_GENERIC.
78  */
79 struct intf_dialog_args_t
80 {
81     intf_thread_t *p_intf;
82     char *psz_title;
83
84     char **psz_results;
85     int  i_results;
86
87     void (*pf_callback) ( intf_dialog_args_t * );
88     void *p_arg;
89
90     /* Specifically for INTF_DIALOG_FILE_GENERIC */
91     char *psz_extensions;
92     bool b_save;
93     bool b_multiple;
94
95     /* Specific to INTF_DIALOG_INTERACTION */
96     struct interaction_dialog_t *p_dialog;
97 };
98
99 /*****************************************************************************
100  * Prototypes
101  *****************************************************************************/
102 VLC_API int intf_Create( vlc_object_t *, const char * );
103 #define intf_Create(a,b) intf_Create(VLC_OBJECT(a),b)
104
105 VLC_API void libvlc_Quit( libvlc_int_t * );
106
107 /*@}*/
108
109 /*****************************************************************************
110  * Macros
111  *****************************************************************************/
112 #if defined( WIN32 ) && !defined( UNDER_CE )
113 #    define CONSOLE_INTRO_MSG \
114          if( !getenv( "PWD" ) ) /* detect Cygwin shell or Wine */ \
115          { \
116          AllocConsole(); \
117          freopen( "CONOUT$", "w", stdout ); \
118          freopen( "CONOUT$", "w", stderr ); \
119          freopen( "CONIN$", "r", stdin ); \
120          } \
121          msg_Info( p_intf, "VLC media player - %s", VERSION_MESSAGE ); \
122          msg_Info( p_intf, "%s", COPYRIGHT_MESSAGE ); \
123          msg_Info( p_intf, _("\nWarning: if you cannot access the GUI " \
124                              "anymore, open a command-line window, go to the " \
125                              "directory where you installed VLC and run " \
126                              "\"vlc -I qt\"\n") )
127 #else
128 #    define CONSOLE_INTRO_MSG (void)0
129 #endif
130
131 /* Interface dialog ids for dialog providers */
132 typedef enum vlc_dialog {
133     INTF_DIALOG_FILE_SIMPLE = 1,
134     INTF_DIALOG_FILE,
135     INTF_DIALOG_DISC,
136     INTF_DIALOG_NET,
137     INTF_DIALOG_CAPTURE,
138     INTF_DIALOG_SAT,
139     INTF_DIALOG_DIRECTORY,
140
141     INTF_DIALOG_STREAMWIZARD,
142     INTF_DIALOG_WIZARD,
143
144     INTF_DIALOG_PLAYLIST,
145     INTF_DIALOG_MESSAGES,
146     INTF_DIALOG_FILEINFO,
147     INTF_DIALOG_PREFS,
148     INTF_DIALOG_BOOKMARKS,
149     INTF_DIALOG_EXTENDED,
150
151     INTF_DIALOG_POPUPMENU = 20,
152     INTF_DIALOG_AUDIOPOPUPMENU,
153     INTF_DIALOG_VIDEOPOPUPMENU,
154     INTF_DIALOG_MISCPOPUPMENU,
155
156     INTF_DIALOG_FILE_GENERIC = 30,
157     INTF_DIALOG_INTERACTION = 50,
158
159     INTF_DIALOG_UPDATEVLC = 90,
160     INTF_DIALOG_VLM,
161
162     INTF_DIALOG_EXIT = 99
163 } vlc_dialog_t;
164
165 /* Useful text messages shared by interfaces */
166 #define INTF_ABOUT_MSG LICENSE_MSG
167
168 #define EXTENSIONS_AUDIO_CSV "3ga", "669", "a52", "aac", "ac3", "ape", "awb", "dts", "flac", "it", \
169                          "m4a", "m4p", "mka", "mlp", "mod", "mp1", "mp2", "mp3", "mpc", "mpga", \
170                          "oga", "ogg", "oma", "qcp", "ra", "rmi", "s3m", "spx", "thd", "tta", \
171                          "wav", "wma", "wv", "xm"
172
173 #define EXTENSIONS_VIDEO_CSV "asf", "avi", "divx", "drc", "dv", "f4v", "flv", "gxf", "iso", \
174                              "m1v", "m2v", "m2t", "m2ts", "m4v", "mkv", "mov",\
175                              "mp2", "mp4", "mpeg", "mpeg1", \
176                              "mpeg2", "mpeg4", "mpg", "mts", "mtv", "mxf", "mxg", "nuv", \
177                              "ogg", "ogm", "ogv", "ogx", "ps", \
178                              "rec", "rm", "rmvb", "ts", "vob", "wm", "wmv"
179
180 #define EXTENSIONS_AUDIO \
181     "*.3ga;" \
182     "*.669;" \
183     "*.a52;" \
184     "*.aac;" \
185     "*.ac3;" \
186     "*.adt;" \
187     "*.adts;" \
188     "*.aif;"\
189     "*.aifc;"\
190     "*.aiff;"\
191     "*.amr;" \
192     "*.aob;" \
193     "*.ape;" \
194     "*.awb;" \
195     "*.caf;" \
196     "*.cda;" \
197     "*.dts;" \
198     "*.flac;"\
199     "*.it;"  \
200     "*.m4a;" \
201     "*.m4p;" \
202     "*.mid;" \
203     "*.mka;" \
204     "*.mlp;" \
205     "*.mod;" \
206     "*.mp1;" \
207     "*.mp2;" \
208     "*.mp3;" \
209     "*.mpc;" \
210     "*.mpga;" \
211     "*.oga;" \
212     "*.ogg;" \
213     "*.oma;" \
214     "*.qcp;" \
215     "*.ra;" \
216     "*.rmi;" \
217     "*.s3m;" \
218     "*.spx;" \
219     "*.thd;" \
220     "*.tta;" \
221     "*.voc;" \
222     "*.vqf;" \
223     "*.w64;" \
224     "*.wav;" \
225     "*.wma;" \
226     "*.wv;"  \
227     "*.xa;"  \
228     "*.xm"
229
230 #define EXTENSIONS_VIDEO "*.3g2;*.3gp;*.3gp2;*.3gpp;*.amv;*.asf;*.avi;*.bin;*.divx;*.drc;*.dv;*f4v;*.flv;*.gxf;*.iso;*.m1v;*.m2v;" \
231                          "*.m2t;*.m2ts;*.m4v;*.mkv;*.mov;*.mp2;*.mp2v;*.mp4;*.mp4v;*.mpa;*.mpe;*.mpeg;*.mpeg1;" \
232                          "*.mpeg2;*.mpeg4;*.mpg;*.mpv2;*.mts;*.mtv;*.mxf;*.mxg;*.nsv;*.nuv;" \
233                          "*.ogg;*.ogm;*.ogv;*.ogx;*.ps;" \
234                          "*.rec;*.rm;*.rmvb;*.tod;*.ts;*.tts;*.vob;*.vro;*.webm;*.wm;*.wmv"
235
236 #define EXTENSIONS_PLAYLIST "*.asx;*.b4s;*.cue;*.ifo;*.m3u;*.m3u8;*.pls;*.ram;*.rar;*.sdp;*.vlc;*.xspf;*.wvx;*.zip;*.conf"
237
238 #define EXTENSIONS_MEDIA EXTENSIONS_VIDEO ";" EXTENSIONS_AUDIO ";" \
239                           EXTENSIONS_PLAYLIST
240
241 #define EXTENSIONS_SUBTITLE "*.cdg;*.idx;*.srt;" \
242                             "*.sub;*.utf;*.ass;" \
243                             "*.ssa;*.aqt;" \
244                             "*.jss;*.psb;" \
245                             "*.rt;*.smi;*.txt;" \
246                             "*.smil;*.stl;*.usf" \
247                             "*.dks;*.pjs;*.mpl2"
248
249 /** \defgroup vlc_interaction Interaction
250  * \ingroup vlc_interface
251  * Interaction between user and modules
252  * @{
253  */
254
255 /**
256  * This structure describes a piece of interaction with the user
257  */
258 typedef struct interaction_dialog_t
259 {
260     int             i_type;             ///< Type identifier
261     char           *psz_title;          ///< Title
262     char           *psz_description;    ///< Descriptor string
263     char           *psz_default_button;  ///< default button title (~OK)
264     char           *psz_alternate_button;///< alternate button title (~NO)
265     /// other button title (optional,~Cancel)
266     char           *psz_other_button;
267
268     char           *psz_returned[1];    ///< returned responses from the user
269
270     vlc_value_t     val;                ///< value coming from core for dialogue
271     int             i_timeToGo;         ///< time (in sec) until shown progress is finished
272     bool      b_cancelled;        ///< was the dialogue cancelled ?
273
274     void *          p_private;          ///< Private interface data
275
276     int             i_status;           ///< Dialog status;
277     int             i_action;           ///< Action to perform;
278     int             i_flags;            ///< Misc flags
279     int             i_return;           ///< Return status
280
281     vlc_object_t   *p_parent;           ///< The vlc object that asked
282                                         //for interaction
283     intf_thread_t  *p_interface;
284     vlc_mutex_t    *p_lock;
285 } interaction_dialog_t;
286
287 /**
288  * Possible flags . Dialog types
289  */
290 #define DIALOG_GOT_ANSWER           0x01
291 #define DIALOG_YES_NO_CANCEL        0x02
292 #define DIALOG_LOGIN_PW_OK_CANCEL   0x04
293 #define DIALOG_PSZ_INPUT_OK_CANCEL  0x08
294 #define DIALOG_BLOCKING_ERROR       0x10
295 #define DIALOG_NONBLOCKING_ERROR    0x20
296 #define DIALOG_USER_PROGRESS        0x80
297 #define DIALOG_INTF_PROGRESS        0x100
298
299 /** Possible return codes */
300 enum
301 {
302     DIALOG_OK_YES,
303     DIALOG_NO,
304     DIALOG_CANCELLED
305 };
306
307 /** Possible status  */
308 enum
309 {
310     ANSWERED_DIALOG,            ///< Got "answer"
311     DESTROYED_DIALOG,           ///< Interface has destroyed it
312 };
313
314 /** Possible actions */
315 enum
316 {
317     INTERACT_NEW,
318     INTERACT_UPDATE,
319     INTERACT_HIDE,
320     INTERACT_DESTROY
321 };
322
323 #define intf_UserStringInput( a, b, c, d ) (VLC_OBJECT(a),b,c,d, VLC_EGENERIC)
324 #define interaction_Register( t ) (t, VLC_EGENERIC)
325 #define interaction_Unregister( t ) (t, VLC_EGENERIC)
326
327
328 /** @} */
329 /** @} */
330
331 # ifdef __cplusplus
332 }
333 # endif
334 #endif