vlc_interface.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:6k
源码类别:

多媒体

开发平台:

MultiPlatform

  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 VideoLAN
  7.  * $Id: vlc_interface.h 9125 2004-11-03 00:05:22Z sam $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. typedef struct intf_dialog_args_t intf_dialog_args_t;
  26. /**
  27.  * file
  28.  * This file contains structures and function prototypes for
  29.  * interface management in vlc
  30.  */
  31. /*****************************************************************************
  32.  * intf_thread_t: describe an interface thread
  33.  *****************************************************************************
  34.  * This struct describes all interface-specific data of the main (interface)
  35.  * thread.
  36.  *****************************************************************************/
  37. /**
  38.  * defgroup vlc_interface Interface
  39.  * These functions and structures are for interface management
  40.  * @{
  41.  */
  42. struct intf_thread_t
  43. {
  44.     VLC_COMMON_MEMBERS
  45.     /* Thread properties and locks */
  46.     vlc_bool_t          b_block;
  47.     vlc_bool_t          b_play;
  48.     /* Specific interfaces */
  49.     intf_console_t *    p_console;                               /** console */
  50.     intf_sys_t *        p_sys;                          /** system interface */
  51.     /** Interface module */
  52.     module_t *   p_module;
  53.     void      ( *pf_run )    ( intf_thread_t * ); /** Run function */
  54.     /** Specific for dialogs providers */
  55.     void ( *pf_show_dialog ) ( intf_thread_t *, int, int,
  56.                                intf_dialog_args_t * );
  57.     /** Video window callbacks */
  58.     void * ( *pf_request_window ) ( intf_thread_t *, vout_thread_t *,
  59.                                     int *, int *,
  60.                                     unsigned int *, unsigned int * );
  61.     void   ( *pf_release_window ) ( intf_thread_t *, void * );
  62.     int    ( *pf_control_window ) ( intf_thread_t *, void *, int, va_list );
  63.     /* XXX: new message passing stuff will go here */
  64.     vlc_mutex_t  change_lock;
  65.     vlc_bool_t   b_menu_change;
  66.     vlc_bool_t   b_menu;
  67.     /* Provides the ability to switch an interface on the fly */
  68.     char *psz_switch_intf;
  69. };
  70. /*****************************************************************************
  71.  * intf_dialog_args_t: arguments structure passed to a dialogs provider.
  72.  *****************************************************************************
  73.  * This struct describes the arguments passed to the dialogs provider.
  74.  * For now they are only used with INTF_DIALOG_FILE_GENERIC.
  75.  *****************************************************************************/
  76. struct intf_dialog_args_t
  77. {
  78.     char *psz_title;
  79.     char **psz_results;
  80.     int  i_results;
  81.     void (*pf_callback) ( intf_dialog_args_t * );
  82.     void *p_arg;
  83.     /* Specifically for INTF_DIALOG_FILE_GENERIC */
  84.     char *psz_extensions;
  85.     vlc_bool_t b_save;
  86.     vlc_bool_t b_multiple;
  87. };
  88. /*****************************************************************************
  89.  * Prototypes
  90.  *****************************************************************************/
  91. #define intf_Create(a,b) __intf_Create(VLC_OBJECT(a),b)
  92. VLC_EXPORT( intf_thread_t *, __intf_Create,     ( vlc_object_t *, const char * ) );
  93. VLC_EXPORT( int,               intf_RunThread,  ( intf_thread_t * ) );
  94. VLC_EXPORT( void,              intf_StopThread, ( intf_thread_t * ) );
  95. VLC_EXPORT( void,              intf_Destroy,    ( intf_thread_t * ) );
  96. /*@}*/
  97. /*****************************************************************************
  98.  * Macros
  99.  *****************************************************************************/
  100. #if defined( WIN32 ) && !defined( UNDER_CE )
  101. #    define CONSOLE_INTRO_MSG 
  102.          if( !getenv( "PWD" ) || !getenv( "PS1" ) ) /* detect cygwin shell */ 
  103.          { 
  104.          AllocConsole(); 
  105.          freopen( "CONOUT$", "w", stdout ); 
  106.          freopen( "CONOUT$", "w", stderr ); 
  107.          freopen( "CONIN$", "r", stdin ); 
  108.          } 
  109.          msg_Info( p_intf, COPYRIGHT_MESSAGE ); 
  110.          msg_Info( p_intf, _("nWarning: if you can't access the GUI " 
  111.                              "anymore, open a dos command box, go to the " 
  112.                              "directory where you installed VLC and run " 
  113.                              ""vlc -I wxwin"n") )
  114. #else
  115. #    define CONSOLE_INTRO_MSG
  116. #endif
  117. /* Interface dialog ids for dialog providers */
  118. #define INTF_DIALOG_FILE_SIMPLE 1
  119. #define INTF_DIALOG_FILE        2
  120. #define INTF_DIALOG_DISC        3
  121. #define INTF_DIALOG_NET         4
  122. #define INTF_DIALOG_CAPTURE     5
  123. #define INTF_DIALOG_SAT         6
  124. #define INTF_DIALOG_STREAMWIZARD 8
  125. #define INTF_DIALOG_WIZARD 9
  126. #define INTF_DIALOG_PLAYLIST   10
  127. #define INTF_DIALOG_MESSAGES   11
  128. #define INTF_DIALOG_FILEINFO   12
  129. #define INTF_DIALOG_PREFS      13
  130. #define INTF_DIALOG_BOOKMARKS  14
  131. #define INTF_DIALOG_POPUPMENU  20
  132. #define INTF_DIALOG_FILE_GENERIC 30
  133. #define INTF_DIALOG_EXIT       99
  134. /* Useful text messages shared by interfaces */
  135. #define INTF_ABOUT_MSG 
  136.     _( "VLC is an open-source and cross-platform multimedia " 
  137.        "player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, " 
  138.        "DivX, mp3, Ogg, etc.) as well as DVDs, VCDs, CD audio, and various " 
  139.        "streaming protocols.nn" 
  140.        "VLC is also a streaming server with transcoding capabilities " 
  141.        "(UDP unicast and multicast, HTTP, etc.) mainly designed for " 
  142.        "high-bandwidth networks.nn"
  143.        "For more information, have a look at the web site." )