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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * control.c : functions to handle stream control buttons.
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 VideoLAN
  5.  * $Id: control.c 7957 2004-06-07 22:35:20Z fenrir $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *          St閜hane Borel <stef@via.ecp.fr>
  9.  *      
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  * 
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <sys/types.h>                                              /* off_t */
  28. #include <stdlib.h>
  29. #include <vlc/vlc.h>
  30. #include <vlc/intf.h>
  31. #ifdef MODULE_NAME_IS_gnome
  32. #   include <gnome.h>
  33. #else
  34. #   include <gtk/gtk.h>
  35. #endif
  36. #include <string.h>
  37. #include "gtk_callbacks.h"
  38. #include "gtk_interface.h"
  39. #include "gtk_support.h"
  40. #include "playlist.h"
  41. #include "common.h"
  42. /****************************************************************************
  43.  * Control functions: this is where the functions are defined
  44.  ****************************************************************************
  45.  * These functions are button-items callbacks, and are used
  46.  * by other callbacks
  47.  ****************************************************************************/
  48. gboolean GtkControlBack( GtkWidget       *widget,
  49.                          gpointer         user_data )
  50. {
  51.     return FALSE;
  52. }
  53. gboolean GtkControlStop( GtkWidget       *widget,
  54.                          gpointer         user_data )
  55. {
  56.     intf_thread_t *  p_intf = GtkGetIntf( widget );
  57.     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  58.                                                        FIND_ANYWHERE );
  59.     if( p_playlist == NULL )
  60.     {
  61.         return FALSE;
  62.     }
  63.     playlist_Stop( p_playlist );
  64.     vlc_object_release( p_playlist );
  65.     return TRUE;
  66. }
  67. gboolean GtkControlPlay( GtkWidget       *widget,
  68.                          gpointer         user_data )
  69. {
  70.     intf_thread_t *  p_intf = GtkGetIntf( widget );
  71.     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  72.                                                        FIND_ANYWHERE );
  73.     if( p_playlist == NULL )
  74.     {
  75.         GtkFileOpenShow( widget, user_data );
  76.         return TRUE;
  77.     }
  78.     /* If the playlist is empty, open a file requester instead */
  79.     vlc_mutex_lock( &p_playlist->object_lock );
  80.     if( p_playlist->i_size )
  81.     {
  82.         vlc_mutex_unlock( &p_playlist->object_lock );
  83.         playlist_Play( p_playlist );
  84.         vlc_object_release( p_playlist );
  85.     }
  86.     else
  87.     {
  88.         vlc_mutex_unlock( &p_playlist->object_lock );
  89.         vlc_object_release( p_playlist );
  90.         GtkFileOpenShow( widget, user_data );
  91.     }
  92.     return TRUE;
  93. }
  94. gboolean GtkControlPause( GtkWidget       *widget,
  95.                           gpointer         user_data )
  96. {
  97.     intf_thread_t *  p_intf = GtkGetIntf( widget );
  98.     if( p_intf->p_sys->p_input == NULL )
  99.     {
  100.         return FALSE;
  101.     }
  102.     var_SetInteger( p_intf->p_sys->p_input, "state", PAUSE_S );
  103.     return TRUE;
  104. }
  105. gboolean GtkControlSlow( GtkWidget       *widget,
  106.                          gpointer         user_data )
  107. {
  108.     intf_thread_t *  p_intf = GtkGetIntf( widget );
  109.     if( p_intf->p_sys->p_input == NULL )
  110.     {
  111.         return FALSE;
  112.     }
  113.     var_SetVoid( p_intf->p_sys->p_input, "rate-slower" );
  114.     return TRUE;
  115. }
  116. gboolean GtkControlFast( GtkWidget       *widget,
  117.                          gpointer         user_data )
  118. {
  119.     intf_thread_t *  p_intf = GtkGetIntf( widget );
  120.     if( p_intf->p_sys->p_input == NULL )
  121.     {
  122.         return FALSE;
  123.     }
  124.     var_SetVoid( p_intf->p_sys->p_input, "rate-faster" );
  125.     return TRUE;
  126. }