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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * playlist.h: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: playlist.h 7340 2004-04-13 13:23:26Z bigben $
  6.  *
  7.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  8.  *          Derk-Jan Hartman <hartman at videolan dot org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  * 
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * VLCPlaylistView interface 
  26.  *****************************************************************************/
  27. @interface VLCPlaylistView : NSTableView
  28. {
  29. }
  30. @end
  31. /*****************************************************************************
  32.  * VLCPlaylist interface 
  33.  *****************************************************************************/
  34. @interface VLCPlaylist : NSObject
  35. {
  36.     int i_moveRow;
  37.     bool b_isSortDescending;
  38.     IBOutlet id o_window;
  39.     IBOutlet id o_btn_playlist;
  40.     IBOutlet id o_table_view;
  41.     IBOutlet id o_status_field;
  42.     IBOutlet id o_tc_id;
  43.     IBOutlet id o_tc_name;
  44.     IBOutlet id o_tc_author;
  45.     IBOutlet id o_tc_duration;
  46.     IBOutlet id o_tc_sortColumn;
  47.     IBOutlet id o_ctx_menu;
  48.     IBOutlet id o_mi_save_playlist;
  49.     IBOutlet id o_mi_info;
  50.     IBOutlet id o_mi_play;
  51.     IBOutlet id o_mi_delete;
  52.     IBOutlet id o_mi_selectall;
  53.     IBOutlet id o_mi_toggleItemsEnabled;
  54.     IBOutlet id o_mi_enableGroup;
  55.     IBOutlet id o_mi_disableGroup;
  56.     IBOutlet id o_random_ckb;
  57.     IBOutlet id o_search_keyword;
  58.     IBOutlet id o_search_button;
  59.     IBOutlet id o_loop_popup;
  60. /*For playlist info window*/
  61.     IBOutlet id o_info_window;
  62.     IBOutlet id o_uri_lbl;
  63.     IBOutlet id o_title_lbl;
  64.     IBOutlet id o_author_lbl;
  65.     IBOutlet id o_uri_txt;
  66.     IBOutlet id o_title_txt;
  67.     IBOutlet id o_author_txt;
  68.     IBOutlet id o_btn_info_ok;
  69.     IBOutlet id o_btn_info_cancel;
  70.     IBOutlet id o_tbv_info;
  71.     NSImage *o_descendingSortingImage;
  72.     NSImage *o_ascendingSortingImage;
  73. }
  74. - (void)initStrings;
  75. - (NSMenu *)menuForEvent:(NSEvent *)o_event;
  76. - (IBAction)toggleWindow:(id)sender;
  77. - (IBAction)savePlaylist:(id)sender;
  78. - (IBAction)playItem:(id)sender;
  79. - (IBAction)deleteItems:(id)sender;
  80. - (IBAction)toggleItemsEnabled:(id)sender;
  81. - (IBAction)enableGroup:(id)sender;
  82. - (IBAction)disableGroup:(id)sender;
  83. - (IBAction)selectAll:(id)sender;
  84. - (IBAction)searchItem:(id)sender;
  85. - (IBAction)handlePopUp:(id)sender;
  86. - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
  87. - (void)updateRowSelection;
  88. - (void)playlistUpdated;
  89. /*For playlist info window*/
  90. - (int)selectedPlaylistItem;
  91. - (void)deleteGroup:(int)i_id;
  92. - (NSMutableArray *)selectedPlaylistItemsList;
  93. - (NSColor *)getColor:(int)i_group;
  94. @end