Recognize the new .webm extension in interfaces
[vlc/solaris.git] / include / vlc_interface.h
blob71f466969abd611a7ad1d8a9bd80adbd77de2844
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$
9 * Authors: Vincent Seguin <seguin@via.ecp.fr>
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.
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.
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 *****************************************************************************/
26 #ifndef VLC_INTF_H_
27 #define VLC_INTF_H_
29 # ifdef __cplusplus
30 extern "C" {
31 # endif
33 typedef struct intf_dialog_args_t intf_dialog_args_t;
35 /**
36 * \file
37 * This file contains structures and function prototypes for
38 * interface management in vlc
41 /**
42 * \defgroup vlc_interface Interface
43 * These functions and structures are for interface management
44 * @{
47 typedef struct intf_sys_t intf_sys_t;
49 /** Describe all interface-specific data of the interface thread */
50 typedef struct intf_thread_t
52 VLC_COMMON_MEMBERS
54 struct intf_thread_t *p_next; /** LibVLC interfaces book keeping */
55 /* Thread properties and locks */
56 #if defined( __APPLE__ ) || defined( WIN32 )
57 bool b_should_run_on_first_thread;
58 #endif
60 /* Specific interfaces */
61 intf_sys_t * p_sys; /** system interface */
62 char * psz_intf; /** intf name specified */
64 /** Interface module */
65 module_t * p_module;
66 void ( *pf_run ) ( struct intf_thread_t * ); /** Run function */
68 /** Specific for dialogs providers */
69 void ( *pf_show_dialog ) ( struct intf_thread_t *, int, int,
70 intf_dialog_args_t * );
72 config_chain_t *p_cfg;
73 } intf_thread_t;
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.
79 struct intf_dialog_args_t
81 intf_thread_t *p_intf;
82 char *psz_title;
84 char **psz_results;
85 int i_results;
87 void (*pf_callback) ( intf_dialog_args_t * );
88 void *p_arg;
90 /* Specifically for INTF_DIALOG_FILE_GENERIC */
91 char *psz_extensions;
92 bool b_save;
93 bool b_multiple;
95 /* Specific to INTF_DIALOG_INTERACTION */
96 struct interaction_dialog_t *p_dialog;
99 /*****************************************************************************
100 * Prototypes
101 *****************************************************************************/
102 VLC_EXPORT( int, intf_Create, ( vlc_object_t *, const char * ) );
103 #define intf_Create(a,b) intf_Create(VLC_OBJECT(a),b)
105 VLC_EXPORT( int, intf_Eject, ( vlc_object_t *, const char * ) );
106 #define intf_Eject(a,b) intf_Eject(VLC_OBJECT(a),b)
108 VLC_EXPORT( void, libvlc_Quit, ( libvlc_int_t * ) );
110 /*@}*/
112 /*****************************************************************************
113 * Macros
114 *****************************************************************************/
115 #if defined( WIN32 ) && !defined( UNDER_CE )
116 # define CONSOLE_INTRO_MSG \
117 if( !getenv( "PWD" ) || !getenv( "PS1" ) ) /* detect cygwin shell */ \
119 AllocConsole(); \
120 freopen( "CONOUT$", "w", stdout ); \
121 freopen( "CONOUT$", "w", stderr ); \
122 freopen( "CONIN$", "r", stdin ); \
124 msg_Info( p_intf, "VLC media player - %s", VERSION_MESSAGE ); \
125 msg_Info( p_intf, "%s", COPYRIGHT_MESSAGE ); \
126 msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
127 "anymore, open a command-line window, go to the " \
128 "directory where you installed VLC and run " \
129 "\"vlc -I qt\"\n") )
130 #else
131 # define CONSOLE_INTRO_MSG
132 #endif
134 /* Interface dialog ids for dialog providers */
135 typedef enum vlc_dialog {
136 INTF_DIALOG_FILE_SIMPLE = 1,
137 INTF_DIALOG_FILE,
138 INTF_DIALOG_DISC,
139 INTF_DIALOG_NET,
140 INTF_DIALOG_CAPTURE,
141 INTF_DIALOG_SAT,
142 INTF_DIALOG_DIRECTORY,
144 INTF_DIALOG_STREAMWIZARD,
145 INTF_DIALOG_WIZARD,
147 INTF_DIALOG_PLAYLIST,
148 INTF_DIALOG_MESSAGES,
149 INTF_DIALOG_FILEINFO,
150 INTF_DIALOG_PREFS,
151 INTF_DIALOG_BOOKMARKS,
152 INTF_DIALOG_EXTENDED,
154 INTF_DIALOG_POPUPMENU = 20,
155 INTF_DIALOG_AUDIOPOPUPMENU,
156 INTF_DIALOG_VIDEOPOPUPMENU,
157 INTF_DIALOG_MISCPOPUPMENU,
159 INTF_DIALOG_FILE_GENERIC = 30,
160 INTF_DIALOG_INTERACTION = 50,
162 INTF_DIALOG_UPDATEVLC = 90,
163 INTF_DIALOG_VLM,
165 INTF_DIALOG_EXIT = 99
166 } vlc_dialog_t;
168 /* Useful text messages shared by interfaces */
169 #define INTF_ABOUT_MSG LICENSE_MSG
171 #define EXTENSIONS_AUDIO \
172 "*.a52;" \
173 "*.aac;" \
174 "*.ac3;" \
175 "*.aiff;"\
176 "*.amr;" \
177 "*.aob;" \
178 "*.ape;" \
179 "*.dts;" \
180 "*.flac;"\
181 "*.it;" \
182 "*.m4a;" \
183 "*.m4p;" \
184 "*.mid;" \
185 "*.mka;" \
186 "*.mlp;" \
187 "*.mod;" \
188 "*.mp1;" \
189 "*.mp2;" \
190 "*.mp3;" \
191 "*.mpc;" \
192 "*.oga;" \
193 "*.ogg;" \
194 "*.oma;" \
195 "*.rmi;" \
196 "*.s3m;" \
197 "*.spx;" \
198 "*.tta;" \
199 "*.voc;" \
200 "*.vqf;" \
201 "*.w64;" \
202 "*.wav;" \
203 "*.wma;" \
204 "*.wv;" \
205 "*.xa;" \
206 "*.xm"
208 #define EXTENSIONS_VIDEO "*.3gp;*.amv;*.asf;*.avi;*.divx;*.dv;*.flv;*.gxf;*.iso;*.m1v;*.m2v;" \
209 "*.m2t;*.m2ts;*.m4v;*.mkv;*.mov;*.mp2;*.mp4;*.mpeg;*.mpeg1;" \
210 "*.mpeg2;*.mpeg4;*.mpg;*.mts;*.mxf;*.nsv;*.nuv;" \
211 "*.ogg;*.ogm;*.ogv;*.ogx;*.ps;" \
212 "*.rec;*.rm;*.rmvb;*.tod;*.ts;*.vob;*.vro;*.webm;*.wmv"
214 #define EXTENSIONS_PLAYLIST "*.asx;*.b4s;*.ifo;*.m3u;*.m3u8;*.pls;*.ram;*.rar;*.sdp;*.vlc;*.xspf;*.zip"
216 #define EXTENSIONS_MEDIA EXTENSIONS_VIDEO ";" EXTENSIONS_AUDIO ";" \
217 EXTENSIONS_PLAYLIST
219 #define EXTENSIONS_SUBTITLE "*.cdg;*.idx;*.srt;*.sub;*.utf;*.ass;*.ssa;*.aqt;" \
220 "*.jss;*.psb;*.rt;*.smi"
222 /** \defgroup vlc_interaction Interaction
223 * \ingroup vlc_interface
224 * Interaction between user and modules
225 * @{
229 * This structure describes a piece of interaction with the user
231 typedef struct interaction_dialog_t
233 int i_type; ///< Type identifier
234 char *psz_title; ///< Title
235 char *psz_description; ///< Descriptor string
236 char *psz_default_button; ///< default button title (~OK)
237 char *psz_alternate_button;///< alternate button title (~NO)
238 /// other button title (optional,~Cancel)
239 char *psz_other_button;
241 char *psz_returned[1]; ///< returned responses from the user
243 vlc_value_t val; ///< value coming from core for dialogue
244 int i_timeToGo; ///< time (in sec) until shown progress is finished
245 bool b_cancelled; ///< was the dialogue cancelled ?
247 void * p_private; ///< Private interface data
249 int i_status; ///< Dialog status;
250 int i_action; ///< Action to perform;
251 int i_flags; ///< Misc flags
252 int i_return; ///< Return status
254 vlc_object_t *p_parent; ///< The vlc object that asked
255 //for interaction
256 intf_thread_t *p_interface;
257 vlc_mutex_t *p_lock;
258 } interaction_dialog_t;
261 * Possible flags . Dialog types
263 #define DIALOG_GOT_ANSWER 0x01
264 #define DIALOG_YES_NO_CANCEL 0x02
265 #define DIALOG_LOGIN_PW_OK_CANCEL 0x04
266 #define DIALOG_PSZ_INPUT_OK_CANCEL 0x08
267 #define DIALOG_BLOCKING_ERROR 0x10
268 #define DIALOG_NONBLOCKING_ERROR 0x20
269 #define DIALOG_USER_PROGRESS 0x80
270 #define DIALOG_INTF_PROGRESS 0x100
272 /** Possible return codes */
273 enum
275 DIALOG_OK_YES,
276 DIALOG_NO,
277 DIALOG_CANCELLED
280 /** Possible status */
281 enum
283 ANSWERED_DIALOG, ///< Got "answer"
284 DESTROYED_DIALOG, ///< Interface has destroyed it
287 /** Possible actions */
288 enum
290 INTERACT_NEW,
291 INTERACT_UPDATE,
292 INTERACT_HIDE,
293 INTERACT_DESTROY
296 #define intf_UserStringInput( a, b, c, d ) (VLC_OBJECT(a),b,c,d, VLC_EGENERIC)
297 #define interaction_Register( t ) (t, VLC_EGENERIC)
298 #define interaction_Unregister( t ) (t, VLC_EGENERIC)
301 /** @} */
302 /** @} */
304 # ifdef __cplusplus
306 # endif
307 #endif