playlist.h
来自「VLC媒体播放程序」· C头文件 代码 · 共 87 行
H
87 行
/***************************************************************************** * playlist.h: MacOS X interface module ***************************************************************************** * Copyright (C) 2002-2004 VideoLAN * $Id: playlist.h,v 1.21 2004/02/06 04:51:02 hartman Exp $ * * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Derk-Jan Hartman <hartman 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., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************//***************************************************************************** * VLCPlaylistView interface *****************************************************************************/@interface VLCPlaylistView : NSTableView{}@end/***************************************************************************** * VLCPlaylist interface *****************************************************************************/@interface VLCPlaylist : NSObject{ int i_moveRow; bool b_isSortDescending; IBOutlet id o_window; IBOutlet id o_btn_playlist; IBOutlet id o_table_view; IBOutlet id o_status_field; IBOutlet id o_tc_id; IBOutlet id o_tc_name; IBOutlet id o_tc_author; IBOutlet id o_tc_duration; IBOutlet id o_tc_sortColumn; IBOutlet id o_ctx_menu; IBOutlet id o_mi_save_playlist; IBOutlet id o_mi_play; IBOutlet id o_mi_delete; IBOutlet id o_mi_selectall; IBOutlet id o_random_ckb; IBOutlet id o_loop_ckb; IBOutlet id o_repeat_ckb; IBOutlet id o_search_keyword; IBOutlet id o_search_button; NSImage *o_descendingSortingImage; NSImage *o_ascendingSortingImage;}- (void)initStrings;- (NSMenu *)menuForEvent:(NSEvent *)o_event;- (IBAction)toggleWindow:(id)sender;- (IBAction)savePlaylist:(id)sender;- (IBAction)playItem:(id)sender;- (IBAction)deleteItems:(id)sender;- (IBAction)selectAll:(id)sender;- (IBAction)searchItem:(id)sender;- (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;- (void)updateRowSelection;- (void)playlistUpdated;@end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?