bookmarks.h

来自「uclinux 下的vlc播放器源代码」· C头文件 代码 · 共 68 行

H
68
字号
/***************************************************************************** * bookmarks.h: MacOS X Bookmarks window ***************************************************************************** * Copyright (C) 2005 the VideoLAN team * $Id: bookmarks.h 14187 2006-02-07 16:37:40Z courmisch $ * * Authors: Felix Kühne <fkuehne@users.sf.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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/#import <Cocoa/Cocoa.h>#import <vlc/vlc.h>@interface VLCBookmarks : NSObject{    /* main window */    IBOutlet id o_bookmarks_window;    IBOutlet id o_btn_add;    IBOutlet id o_btn_clear;    IBOutlet id o_btn_edit;    IBOutlet id o_btn_extract;    IBOutlet id o_btn_rm;    IBOutlet id o_tbl_dataTable;        /* edit window */    IBOutlet id o_edit_window;    IBOutlet id o_edit_btn_ok;    IBOutlet id o_edit_btn_cancel;    IBOutlet id o_edit_lbl_name;    IBOutlet id o_edit_lbl_time;    IBOutlet id o_edit_lbl_bytes;    IBOutlet id o_edit_fld_name;    IBOutlet id o_edit_fld_time;    IBOutlet id o_edit_fld_bytes;        input_thread_t *p_old_input;}- (IBAction)add:(id)sender;- (IBAction)clear:(id)sender;- (IBAction)edit:(id)sender;- (IBAction)extract:(id)sender;- (IBAction)remove:(id)sender;- (IBAction)goToBookmark:(id)sender;- (IBAction)edit_cancel:(id)sender;- (IBAction)edit_ok:(id)sender;+ (VLCBookmarks *)sharedInstance;- (void)initStrings;- (void)showBookmarks;- (id)getDataTable;@end

⌨️ 快捷键说明

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