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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * gtk_common.h: private Gtk+ interface description
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000 VideoLAN
  5.  * $Id: common.h 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Drag'n'drop stuff
  25.  *****************************************************************************/
  26. #define DROP_ACCEPT_TEXT_URI_LIST  0
  27. #define DROP_ACCEPT_TEXT_PLAIN     1
  28. #define DROP_ACCEPT_STRING         2
  29. #define DROP_ACCEPT_END            3
  30. /*****************************************************************************
  31.  * intf_sys_t: description and status of Gtk+ interface
  32.  *****************************************************************************/
  33. struct intf_sys_t
  34. {
  35.     /* the gtk_main module */
  36.     module_t *          p_gtk_main;
  37.     /* special actions */
  38.     vlc_bool_t          b_playing;
  39.     vlc_bool_t          b_popup_changed;                   /* display menu ? */
  40.     vlc_bool_t          b_window_changed;        /* window display toggled ? */
  41.     vlc_bool_t          b_playlist_changed;    /* playlist display toggled ? */
  42.     vlc_bool_t          b_slider_free;                      /* slider status */
  43.     vlc_bool_t          b_deinterlace_update;
  44.     /* menus handlers */
  45.     vlc_bool_t          b_aout_update;
  46.     vlc_bool_t          b_vout_update;
  47.     vlc_bool_t          b_program_update;   /* do we need to update programs
  48.                                                                         menu */
  49.     vlc_bool_t          b_title_update;  /* do we need to update title menus */
  50.     vlc_bool_t          b_chapter_update;            /* do we need to update
  51.                                                                chapter menus */
  52.     vlc_bool_t          b_audio_update;  /* do we need to update audio menus */
  53.     vlc_bool_t          b_spu_update;      /* do we need to update spu menus */
  54.     /* windows and widgets */
  55.     GtkWidget *         p_window;                             /* main window */
  56.     GtkWidget *         p_popup;                               /* popup menu */
  57.     GtkWidget *         p_playwin;                               /* playlist */
  58.     GtkWidget *         p_modules;                         /* module manager */
  59.     GtkWidget *         p_about;                             /* about window */
  60.     GtkWidget *         p_open;                          /* multiopen window */
  61.     GtkWidget *         p_jump;                               /* jump window */
  62.     GtkWidget *         p_sout;                             /* stream output */
  63.     GtkTooltips *       p_tooltips;                              /* tooltips */
  64.     /* The input thread */
  65.     input_thread_t *    p_input;
  66.     /* The slider */
  67.     GtkFrame *          p_slider_frame;
  68.     GtkAdjustment *     p_adj;                   /* slider adjustment object */
  69.     float               f_adj_oldvalue;                    /* previous value */
  70.     /* The messages window */
  71.     GtkWidget *         p_messages;                       /* messages window */
  72.     GtkText *           p_messages_text;                   /* messages frame */
  73.     msg_subscription_t* p_sub;                  /* message bank subscription */
  74.     /* Playlist management */
  75.     int                 i_playing;                 /* playlist selected item */
  76.     /* The window labels for DVD mode */
  77.     GtkLabel *          p_label_title;
  78.     GtkLabel *          p_label_chapter;
  79.     guint               i_part;                           /* current chapter */
  80.     /* audio part */
  81.     vlc_bool_t          b_mute;
  82. };
  83. /*****************************************************************************
  84.  * Prototypes
  85.  *****************************************************************************/
  86. gint E_(GtkModeManage)   ( intf_thread_t * p_intf );
  87. void E_(GtkDisplayDate)  ( GtkAdjustment *p_adj );
  88. /*****************************************************************************
  89.  * Useful macro
  90.  ****************************************************************************/
  91. #define  GtkGetIntf( widget ) E_(__GtkGetIntf)( GTK_WIDGET( widget ) )
  92. void * E_(__GtkGetIntf)( GtkWidget * );