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