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