vout.h
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * vout.h: MacOS X interface module
- *****************************************************************************
- * Copyright (C) 2001-2007 the VideoLAN team
- * $Id: 6b57f7a523e0f5303fae5698c55162bc7f1551c6 $
- *
- * Authors: Colin Delacroix <colin@zoy.org>
- * Florian G. Pflug <fgp@phlo.org>
- * Jon Lech Johansen <jon-vl@nanocrew.net>
- * Eric Petit <titer@m0k.org>
- * Benjamin Pracht <bigben at videolan dot org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #import "misc.h"
- /*****************************************************************************
- * VLCEmbeddedList interface
- *****************************************************************************/
- @interface VLCEmbeddedList : NSObject
- {
- NSMutableArray * o_embedded_array;
- }
- - (id)embeddedVout;
- - (void)releaseEmbeddedVout: (id)o_vout_view;
- - (void)addEmbeddedVout: (id)o_vout_view;
- - (BOOL)windowContainsEmbedded: (id)o_window;
- - (id)viewForWindow: (id)o_window;
- @end
- /*****************************************************************************
- * VLCVoutView interface
- *****************************************************************************/
- @protocol VLCVoutViewResetting
- + (void)resetVout: (vout_thread_t *)p_vout;
- @end
- @interface VLCVoutView : NSView
- {
- vout_thread_t * p_vout;
- NSRect * s_frame;
- NSView <VLCVoutViewResetting> * o_view;
- vout_thread_t * p_real_vout;
- id o_window;
- }
- - (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
- frame: (NSRect *) s_arg_frame;
- - (void)closeVout;
- - (void)updateTitle;
- - (void)manage;
- - (void)scaleWindowWithFactor: (float)factor animate: (BOOL)animate;
- - (void)setOnTop:(BOOL)b_on_top;
- - (void)toggleFloatOnTop;
- - (void)toggleFullscreen;
- - (BOOL)isFullscreen;
- - (void)snapshot;
- - (id)voutWindow;
- + (id)voutView: (vout_thread_t *)p_vout subView: (NSView *) view
- frame: (NSRect *) s_frame;
- + (vout_thread_t *)realVout: (vout_thread_t *)p_vout;
- - (void)enterFullscreen;
- - (void)leaveFullscreen;
- @end
- /*****************************************************************************
- * VLCVoutDetachedView interface
- *****************************************************************************/
- @interface VLCDetachedVoutView : VLCVoutView
- {
- mtime_t i_time_mouse_last_moved;
- }
- - (void)hideMouse: (BOOL)b_hide;
- @end
- /*****************************************************************************
- * VLCEmbeddedView interface
- *****************************************************************************/
- @interface VLCEmbeddedVoutView : VLCVoutView
- {
- BOOL b_used;
- id o_embeddedwindow;
- }
- - (void)setUsed: (BOOL)b_new_used;
- - (BOOL)isUsed;
- @end
- /*****************************************************************************
- * VLCVoutWindow interface
- *****************************************************************************/
- @interface VLCVoutWindow : VLCWindow
- {
- vout_thread_t * p_vout;
- VLCVoutView * o_view;
- NSRect * s_frame;
- bool b_init_ok;
- BOOL fullscreen;
- NSRect initialFrame;
- }
- - (id) initWithVout: (vout_thread_t *) p_vout view: (VLCVoutView *) view
- frame: (NSRect *) s_frame;
- - (id)initMainThread: (id) sender;
- - (void)leaveFullscreen;
- - (void)enterFullscreen;
- - (id)voutView;
- @end