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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vout.h: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2003 VideoLAN
  5.  * $Id: vout.h 8446 2004-08-17 15:17:04Z titer $
  6.  *
  7.  * Authors: Colin Delacroix <colin@zoy.org>
  8.  *          Florian G. Pflug <fgp@phlo.org>
  9.  *          Jon Lech Johansen <jon-vl@nanocrew.net>
  10.  *          Eric Petit <titer@m0k.org>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  * 
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * VLCWindow interface
  28.  *****************************************************************************/
  29. @interface VLCWindow : NSWindow
  30. {
  31.     vout_thread_t * p_vout;
  32.     Ptr             p_fullscreen_state;
  33.     mtime_t         i_time_mouse_last_moved;
  34. }
  35. - (id)initWithVout:(vout_thread_t *)_p_vout
  36.     frame:(NSRect *)s_frame;
  37. - (void)close;
  38. - (void)setOnTop:(bool)b_on_top;
  39. - (void)hideMouse:(bool)b_hide;
  40. - (void)manage;
  41. - (void)scaleWindowWithFactor: (float)factor;
  42. - (void)toggleFloatOnTop;
  43. - (void)toggleFullscreen;
  44. - (BOOL)isFullscreen;
  45. - (void)updateTitle;
  46. - (BOOL)windowShouldClose:(id)sender;
  47. @end