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
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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
24 *****************************************************************************/
26 typedef struct intf_dialog_args_t intf_dialog_args_t;
30 * This file contains structures and function prototypes for
31 * interface management in vlc
35 /*****************************************************************************
36 * intf_thread_t: describe an interface thread
37 *****************************************************************************
38 * This struct describes all interface-specific data of the main (interface)
40 *****************************************************************************/
43 * \defgroup vlc_interface Interface
44 * These functions and structures are for interface management
51 /* Thread properties and locks */
55 /* Specific interfaces */
56 intf_console_t * p_console; /** console */
57 intf_sys_t * p_sys; /** system interface */
59 /** Interface module */
61 void ( *pf_run ) ( intf_thread_t * ); /** Run function */
63 /** Specific for dialogs providers */
64 void ( *pf_show_dialog ) ( intf_thread_t *, int, int,
65 intf_dialog_args_t * );
67 /** Video window callbacks */
68 void * ( *pf_request_window ) ( intf_thread_t *, vout_thread_t *,
70 unsigned int *, unsigned int * );
71 void ( *pf_release_window ) ( intf_thread_t *, void * );
72 int ( *pf_control_window ) ( intf_thread_t *, void *, int, va_list );
74 /* XXX: new message passing stuff will go here */
75 vlc_mutex_t change_lock;
76 vlc_bool_t b_menu_change;
79 /* Provides the ability to switch an interface on the fly */
80 char *psz_switch_intf;
83 /*****************************************************************************
84 * intf_dialog_args_t: arguments structure passed to a dialogs provider.
85 *****************************************************************************
86 * This struct describes the arguments passed to the dialogs provider.
87 * For now they are only used with INTF_DIALOG_FILE_GENERIC.
88 *****************************************************************************/
89 struct intf_dialog_args_t
96 void (*pf_callback) ( intf_dialog_args_t * );
99 /* Specifically for INTF_DIALOG_FILE_GENERIC */
100 char *psz_extensions;
102 vlc_bool_t b_multiple;
105 /*****************************************************************************
107 *****************************************************************************/
108 #define intf_Create(a,b) __intf_Create(VLC_OBJECT(a),b)
109 VLC_EXPORT( intf_thread_t *, __intf_Create, ( vlc_object_t *, const char * ) );
110 VLC_EXPORT( int, intf_RunThread, ( intf_thread_t * ) );
111 VLC_EXPORT( void, intf_StopThread, ( intf_thread_t * ) );
112 VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) );
116 /*****************************************************************************
118 *****************************************************************************/
119 #if defined( WIN32 ) && !defined( UNDER_CE )
120 # define CONSOLE_INTRO_MSG \
121 if( !getenv( "PWD" ) || !getenv( "PS1" ) ) /* detect cygwin shell */ \
124 freopen( "CONOUT$", "w", stdout ); \
125 freopen( "CONOUT$", "w", stderr ); \
126 freopen( "CONIN$", "r", stdin ); \
128 msg_Info( p_intf, COPYRIGHT_MESSAGE ); \
129 msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
130 "anymore, open a dos command box, go to the " \
131 "directory where you installed VLC and run " \
132 "\"vlc -I wxwin\"\n") )
134 # define CONSOLE_INTRO_MSG
137 /* Interface dialog ids for dialog providers */
138 #define INTF_DIALOG_FILE_SIMPLE 1
139 #define INTF_DIALOG_FILE 2
140 #define INTF_DIALOG_DISC 3
141 #define INTF_DIALOG_NET 4
142 #define INTF_DIALOG_CAPTURE 5
143 #define INTF_DIALOG_SAT 6
145 #define INTF_DIALOG_DIRECTORY 7
147 #define INTF_DIALOG_STREAMWIZARD 8
148 #define INTF_DIALOG_WIZARD 9
150 #define INTF_DIALOG_PLAYLIST 10
151 #define INTF_DIALOG_MESSAGES 11
152 #define INTF_DIALOG_FILEINFO 12
153 #define INTF_DIALOG_PREFS 13
154 #define INTF_DIALOG_BOOKMARKS 14
156 #define INTF_DIALOG_POPUPMENU 20
158 #define INTF_DIALOG_FILE_GENERIC 30
160 #define INTF_DIALOG_EXIT 99
162 /* Useful text messages shared by interfaces */
163 #define INTF_ABOUT_MSG \
164 _( "VLC is an open-source and cross-platform multimedia " \
165 "player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, " \
166 "DivX, mp3, Ogg, etc.) as well as DVDs, VCDs, CD audio, and various " \
167 "streaming protocols.\n\n" \
168 "VLC is also a streaming server with transcoding capabilities " \
169 "(UDP unicast and multicast, HTTP, etc.) mainly designed for " \
170 "high-bandwidth networks.\n\n"\
171 "For more information, have a look at the web site." )