Interface.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * intf_beos.cpp: beos interface
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000, 2001 the VideoLAN team
  5.  * $Id: 72c800fd3f4f7f154567f504d30ae37b7543ce65 $
  6.  *
  7.  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          Tony Castley <tony@castley.net>
  10.  *          Richard Shepherd <richard@rshepherd.demon.co.uk>
  11.  *          Stephan Aßmus <stippi@yellowbites.com>
  12.  *          Eric Petit <titer@videolan.org>
  13.  *
  14.  * This program is free software; you can redistribute it and/or modify
  15.  * it under the terms of the GNU General Public License as published by
  16.  * the Free Software Foundation; either version 2 of the License, or
  17.  * (at your option) any later version.
  18.  *
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  *
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  27.  *****************************************************************************/
  28. /*****************************************************************************
  29.  * Preamble
  30.  *****************************************************************************/
  31. #include <InterfaceKit.h>
  32. #include <Application.h>
  33. #include <Message.h>
  34. #ifdef HAVE_CONFIG_H
  35. # include "config.h"
  36. #endif
  37. #include <vlc_common.h>
  38. #include <vlc_interface.h>
  39. #include <vlc_aout.h>
  40. #include <aout_internal.h>
  41. #include "InterfaceWindow.h"
  42. #include "MsgVals.h"
  43. /*****************************************************************************
  44.  * intf_sys_t: internal variables of the BeOS interface
  45.  *****************************************************************************/
  46. struct intf_sys_t
  47. {
  48.     InterfaceWindow * p_window;
  49. };
  50. /*****************************************************************************
  51.  * Local prototype
  52.  *****************************************************************************/
  53. static void Run       ( intf_thread_t *p_intf );
  54. /*****************************************************************************
  55.  * intf_Open: initialize interface
  56.  *****************************************************************************/
  57. int OpenIntf ( vlc_object_t *p_this )
  58. {
  59.     intf_thread_t * p_intf = (intf_thread_t*) p_this;
  60.     /* Allocate instance and initialize some members */
  61.     p_intf->p_sys = (intf_sys_t*) malloc( sizeof( intf_sys_t ) );
  62.     if( !p_intf->p_sys )
  63.         return VLC_EGENERIC;
  64.  
  65.     p_intf->pf_run = Run;
  66.     /* Create the interface window */
  67.     BScreen screen( B_MAIN_SCREEN_ID );
  68.     BRect rect   = screen.Frame();
  69.     rect.top     = rect.bottom - 100;
  70.     rect.bottom -= 50;
  71.     rect.left   += 50;
  72.     rect.right   = rect.left + 350;
  73.     p_intf->p_sys->p_window =
  74.         new InterfaceWindow( p_intf, rect, "VLC " VERSION );
  75.     if( !p_intf->p_sys->p_window )
  76.     {
  77.         free( p_intf->p_sys );
  78.         msg_Err( p_intf, "cannot allocate InterfaceWindow" );
  79.         return VLC_EGENERIC;
  80.     }
  81.     /* Make the be_app aware the interface has been created */
  82.     BMessage message( INTERFACE_CREATED );
  83.     message.AddPointer( "window", p_intf->p_sys->p_window );
  84.     be_app->PostMessage( &message );
  85.     return VLC_SUCCESS;
  86. }
  87. /*****************************************************************************
  88.  * intf_Close: destroy dummy interface
  89.  *****************************************************************************/
  90. void CloseIntf ( vlc_object_t *p_this )
  91. {
  92.     intf_thread_t *p_intf = (intf_thread_t*) p_this;
  93.     /* Destroy the interface window */
  94.     if( p_intf->p_sys->p_window->Lock() )
  95.         p_intf->p_sys->p_window->Quit();
  96.     /* Destroy structure */
  97.     free( p_intf->p_sys );
  98. }
  99. /*****************************************************************************
  100.  * intf_Run: event loop
  101.  *****************************************************************************/
  102. static void Run( intf_thread_t *p_intf )
  103. {
  104.     while( vlc_object_alive( p_intf ) )
  105.     {
  106.         p_intf->p_sys->p_window->UpdateInterface();
  107.         msleep( INTF_IDLE_SLEEP );
  108.     }
  109. }