⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 controls.h

📁 video linux conference
💻 H
字号:
/***************************************************************************** * controls.h: MacOS X interface module ***************************************************************************** * Copyright (C) 2002-2005 VideoLAN * $Id: controls.h 10964 2005-05-10 23:08:52Z djc $ * * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> *          Christophe Massiot <massiot@via.ecp.fr> *          Derk-Jan Hartman <thedj@users.sourceforge.net> * * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************//***************************************************************************** * VLCControls interface  *****************************************************************************/@interface VLCControls : NSObject{    IBOutlet id o_main;    IBOutlet id o_btn_fullscreen;    IBOutlet id o_volumeslider;}- (IBAction)play:(id)sender;- (IBAction)stop:(id)sender;- (IBAction)faster:(id)sender;- (IBAction)slower:(id)sender;- (IBAction)prev:(id)sender;- (IBAction)next:(id)sender;- (IBAction)random:(id)sender;- (IBAction)repeat:(id)sender;- (IBAction)loop:(id)sender;- (IBAction)forward:(id)sender;- (IBAction)backward:(id)sender;- (IBAction)volumeUp:(id)sender;- (IBAction)volumeDown:(id)sender;- (IBAction)mute:(id)sender;- (IBAction)volumeSliderUpdated:(id)sender;- (IBAction)windowAction:(id)sender;- (void)setupVarMenuItem:(NSMenuItem *)o_mi                    target:(vlc_object_t *)p_object                    var:(const char *)psz_variable                    selector:(SEL)pf_callback;- (void)setupVarMenu:(NSMenu *)o_menu                    forMenuItem: (NSMenuItem *)o_parent                    target:(vlc_object_t *)p_object                    var:(const char *)psz_variable                    selector:(SEL)pf_callback;- (IBAction)toggleVar:(id)sender;- (int)toggleVarThread:(id)_o_data;@end/***************************************************************************** * VLCMenuExt interface  ***************************************************************************** * This holds our data for autogenerated menus *****************************************************************************/@interface VLCMenuExt : NSObject{    char *psz_name;    int i_object_id;    vlc_value_t value;    int i_type;}- (id)initWithVar: (const char *)_psz_name Object: (int)i_id        Value: (vlc_value_t)val ofType: (int)_i_type;- (char *)name;- (int)objectID;- (vlc_value_t)value;- (int)type;@end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -