]> git.sesse.net Git - vlc/blob - include/vlc_interface.h
intf: WebVTT extensions detection
[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
56     /* Specific interfaces */
57     intf_sys_t *        p_sys;                          /** system interface */
58
59     /** Interface module */
60     module_t *   p_module;
61
62     /** Specific for dialogs providers */
63     void ( *pf_show_dialog ) ( struct intf_thread_t *, int, int,
64                                intf_dialog_args_t * );
65
66     config_chain_t *p_cfg;
67 } intf_thread_t;
68
69 /** \brief Arguments passed to a dialogs provider
70  *  This describes the arguments passed to the dialogs provider. They are
71  *  mainly used with INTF_DIALOG_FILE_GENERIC.
72  */
73 struct intf_dialog_args_t
74 {
75     intf_thread_t *p_intf;
76     char *psz_title;
77
78     char **psz_results;
79     int  i_results;
80
81     void (*pf_callback) ( intf_dialog_args_t * );
82     void *p_arg;
83
84     /* Specifically for INTF_DIALOG_FILE_GENERIC */
85     char *psz_extensions;
86     bool b_save;
87     bool b_multiple;
88
89     /* Specific to INTF_DIALOG_INTERACTION */
90     struct interaction_dialog_t *p_dialog;
91 };
92
93 VLC_API int intf_Create( vlc_object_t *, const char * );
94 #define intf_Create(a,b) intf_Create(VLC_OBJECT(a),b)
95
96 VLC_API void libvlc_Quit( libvlc_int_t * );
97
98 /**
99  * \defgroup vlc_subscription Log messages subscription
100  * These functions deal with log messages.
101  * @{
102  */
103
104 /**
105  * Message logging callback signature.
106  * \param data data pointer as provided to vlc_msg_SetCallback().
107  * \param type message type (VLC_MSG_* values from enum vlc_log_type)
108  * \param item meta information
109  * \param fmt format string
110  * \param args format string arguments
111  */
112 typedef void (*vlc_log_cb) (void *data, int type, const vlc_log_t *item,
113                             const char *fmt, va_list args);
114
115 VLC_API void vlc_LogSet(libvlc_int_t *, vlc_log_cb cb, void *data);
116
117 typedef struct msg_subscription { } msg_subscription_t;
118 #define vlc_Subscribe(sub,cb,data) ((sub), (cb), (data))
119 #define vlc_Unsubscribe(sub) ((void)(sub))
120
121 /*@}*/
122
123 #if defined( _WIN32 ) && !VLC_WINSTORE_APP
124 #    define CONSOLE_INTRO_MSG \
125          if( !getenv( "PWD" ) ) /* detect Cygwin shell or Wine */ \
126          { \
127          AllocConsole(); \
128          freopen( "CONOUT$", "w", stdout ); \
129          freopen( "CONOUT$", "w", stderr ); \
130          freopen( "CONIN$", "r", stdin ); \
131          } \
132          msg_Info( p_intf, "VLC media player - %s", VERSION_MESSAGE ); \
133          msg_Info( p_intf, "%s", COPYRIGHT_MESSAGE ); \
134          msg_Info( p_intf, _("\nWarning: if you cannot access the GUI " \
135                              "anymore, open a command-line window, go to the " \
136                              "directory where you installed VLC and run " \
137                              "\"vlc -I qt\"\n") )
138 #else
139 #    define CONSOLE_INTRO_MSG (void)0
140 #endif
141
142 /* Interface dialog ids for dialog providers */
143 typedef enum vlc_dialog {
144     INTF_DIALOG_FILE_SIMPLE = 1,
145     INTF_DIALOG_FILE,
146     INTF_DIALOG_DISC,
147     INTF_DIALOG_NET,
148     INTF_DIALOG_CAPTURE,
149     INTF_DIALOG_SAT,
150     INTF_DIALOG_DIRECTORY,
151
152     INTF_DIALOG_STREAMWIZARD,
153     INTF_DIALOG_WIZARD,
154
155     INTF_DIALOG_PLAYLIST,
156     INTF_DIALOG_MESSAGES,
157     INTF_DIALOG_FILEINFO,
158     INTF_DIALOG_PREFS,
159     INTF_DIALOG_BOOKMARKS,
160     INTF_DIALOG_EXTENDED,
161
162     INTF_DIALOG_POPUPMENU = 20,
163     INTF_DIALOG_AUDIOPOPUPMENU,
164     INTF_DIALOG_VIDEOPOPUPMENU,
165     INTF_DIALOG_MISCPOPUPMENU,
166
167     INTF_DIALOG_FILE_GENERIC = 30,
168     INTF_DIALOG_INTERACTION = 50,
169
170     INTF_DIALOG_UPDATEVLC = 90,
171     INTF_DIALOG_VLM,
172
173     INTF_DIALOG_EXIT = 99
174 } vlc_dialog_t;
175
176 /* Useful text messages shared by interfaces */
177 #define INTF_ABOUT_MSG LICENSE_MSG
178
179 #define EXTENSIONS_AUDIO_CSV "3ga", "669", "a52", "aac", "ac3", "adt", "adts", "aif", "aifc", "aiff", \
180                          "amr", "aob", "ape", "awb", "caf", "dts", "flac", "it", "kar", \
181                          "m4a", "m4p", "m5p", "mka", "mlp", "mod", "mpa", "mp1", "mp2", "mp3", "mpc", "mpga", \
182                          "oga", "ogg", "oma", "opus", "qcp", "ra", "rmi", "s3m", "spx", "thd", "tta", \
183                          "voc", "vqf", "w64", "wav", "wma", "wv", "xa", "xm"
184
185 #define EXTENSIONS_VIDEO_CSV "3g2", "3gp", "3gp2", "3gpp", "amv", "asf", "avi", "divx", "drc", "dv", \
186                              "f4v", "flv", "gvi", "gxf", "iso", \
187                              "m1v", "m2v", "m2t", "m2ts", "m4v", "mkv", "mov",\
188                              "mp2", "mp2v", "mp4", "mp4v", "mpe", "mpeg", "mpeg1", \
189                              "mpeg2", "mpeg4", "mpg", "mpv2", "mts", "mtv", "mxf", "mxg", "nsv", "nuv", \
190                              "ogg", "ogm", "ogv", "ogx", "ps", \
191                              "rec", "rm", "rmvb", "tod", "ts", "tts", "vob", "vro", \
192                              "webm", "wm", "wmv", "wtv", "xesc"
193
194 #define EXTENSIONS_AUDIO \
195     "*.3ga;" \
196     "*.669;" \
197     "*.a52;" \
198     "*.aac;" \
199     "*.ac3;" \
200     "*.adt;" \
201     "*.adts;" \
202     "*.aif;"\
203     "*.aifc;"\
204     "*.aiff;"\
205     "*.amr;" \
206     "*.aob;" \
207     "*.ape;" \
208     "*.awb;" \
209     "*.caf;" \
210     "*.dts;" \
211     "*.flac;"\
212     "*.it;"  \
213     "*.kar;" \
214     "*.m4a;" \
215     "*.m4p;" \
216     "*.m5p;" \
217     "*.mid;" \
218     "*.mka;" \
219     "*.mlp;" \
220     "*.mod;" \
221     "*.mpa;" \
222     "*.mp1;" \
223     "*.mp2;" \
224     "*.mp3;" \
225     "*.mpc;" \
226     "*.mpga;" \
227     "*.oga;" \
228     "*.ogg;" \
229     "*.oma;" \
230     "*.opus;" \
231     "*.qcp;" \
232     "*.ra;" \
233     "*.rmi;" \
234     "*.s3m;" \
235     "*.spx;" \
236     "*.thd;" \
237     "*.tta;" \
238     "*.voc;" \
239     "*.vqf;" \
240     "*.w64;" \
241     "*.wav;" \
242     "*.wma;" \
243     "*.wv;"  \
244     "*.xa;"  \
245     "*.xm"
246
247 #define EXTENSIONS_VIDEO "*.3g2;*.3gp;*.3gp2;*.3gpp;*.amv;*.asf;*.avi;*.bin;*.divx;*.drc;*.dv;*f4v;*.flv;*.gvi;*.gvi;*.gxf;*.iso;*.m1v;*.m2v;" \
248                          "*.m2t;*.m2ts;*.m4v;*.mkv;*.mov;*.mp2;*.mp2v;*.mp4;*.mp4v;*.mpe;*.mpeg;*.mpeg1;" \
249                          "*.mpeg2;*.mpeg4;*.mpg;*.mpv2;*.mts;*.mtv;*.mxf;*.mxg;*.nsv;*.nuv;" \
250                          "*.ogg;*.ogm;*.ogv;*.ogx;*.ps;" \
251                          "*.rec;*.rm;*.rmvb;*.tod;*.ts;*.tts;*.vob;*.vro;*.webm;*.wm;*.wmv;*.wtv;*.xesc"
252
253 #define EXTENSIONS_PLAYLIST "*.asx;*.b4s;*.cue;*.ifo;*.m3u;*.m3u8;*.pls;*.ram;*.rar;*.sdp;*.vlc;*.xspf;*.wvx;*.zip;*.conf"
254
255 #define EXTENSIONS_MEDIA EXTENSIONS_VIDEO ";" EXTENSIONS_AUDIO ";" \
256                           EXTENSIONS_PLAYLIST
257
258 #define EXTENSIONS_SUBTITLE "*.cdg;*.idx;*.srt;" \
259                             "*.sub;*.utf;*.ass;" \
260                             "*.ssa;*.aqt;" \
261                             "*.jss;*.psb;" \
262                             "*.rt;*.smi;*.txt;" \
263                             "*.smil;*.stl;*.usf;" \
264                             "*.dks;*.pjs;*.mpl2;*.mks;" \
265                             "*.vtt"
266
267 /** \defgroup vlc_interaction Interaction
268  * \ingroup vlc_interface
269  * Interaction between user and modules
270  * @{
271  */
272
273 /**
274  * This structure describes a piece of interaction with the user
275  */
276 typedef struct interaction_dialog_t
277 {
278     int             i_type;             ///< Type identifier
279     char           *psz_title;          ///< Title
280     char           *psz_description;    ///< Descriptor string
281     char           *psz_default_button;  ///< default button title (~OK)
282     char           *psz_alternate_button;///< alternate button title (~NO)
283     /// other button title (optional,~Cancel)
284     char           *psz_other_button;
285
286     char           *psz_returned[1];    ///< returned responses from the user
287
288     vlc_value_t     val;                ///< value coming from core for dialogue
289     int             i_timeToGo;         ///< time (in sec) until shown progress is finished
290     bool      b_cancelled;        ///< was the dialogue cancelled ?
291
292     void *          p_private;          ///< Private interface data
293
294     int             i_status;           ///< Dialog status;
295     int             i_action;           ///< Action to perform;
296     int             i_flags;            ///< Misc flags
297     int             i_return;           ///< Return status
298
299     vlc_object_t   *p_parent;           ///< The vlc object that asked
300                                         //for interaction
301     intf_thread_t  *p_interface;
302     vlc_mutex_t    *p_lock;
303 } interaction_dialog_t;
304
305 /**
306  * Possible flags . Dialog types
307  */
308 #define DIALOG_GOT_ANSWER           0x01
309 #define DIALOG_YES_NO_CANCEL        0x02
310 #define DIALOG_LOGIN_PW_OK_CANCEL   0x04
311 #define DIALOG_PSZ_INPUT_OK_CANCEL  0x08
312 #define DIALOG_BLOCKING_ERROR       0x10
313 #define DIALOG_NONBLOCKING_ERROR    0x20
314 #define DIALOG_USER_PROGRESS        0x80
315 #define DIALOG_INTF_PROGRESS        0x100
316
317 /** Possible return codes */
318 enum
319 {
320     DIALOG_OK_YES,
321     DIALOG_NO,
322     DIALOG_CANCELLED
323 };
324
325 /** Possible status  */
326 enum
327 {
328     ANSWERED_DIALOG,            ///< Got "answer"
329     DESTROYED_DIALOG,           ///< Interface has destroyed it
330 };
331
332 /** Possible actions */
333 enum
334 {
335     INTERACT_NEW,
336     INTERACT_UPDATE,
337     INTERACT_HIDE,
338     INTERACT_DESTROY
339 };
340
341 #define intf_UserStringInput( a, b, c, d ) (VLC_OBJECT(a),b,c,d, VLC_EGENERIC)
342 #define interaction_Register( t ) (t, VLC_EGENERIC)
343 #define interaction_Unregister( t ) (t, VLC_EGENERIC)
344
345
346 /** @} */
347 /** @} */
348
349 # ifdef __cplusplus
350 }
351 # endif
352 #endif