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