playlist.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * playlist.h: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2006 the VideoLAN team
  5.  * $Id: 02f291ac79ba079122e59934203aca4e2e01371a $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * VLCPlaylistView interface
  26.  *****************************************************************************/
  27. @interface VLCPlaylistView : NSOutlineView
  28. {
  29. }
  30. @end
  31. /*****************************************************************************
  32.  * VLCPlaylistCommon interface
  33.  *****************************************************************************/
  34. @interface VLCPlaylistCommon : NSObject
  35. {
  36.     IBOutlet id o_tc_name;
  37.     IBOutlet id o_tc_author;
  38.     IBOutlet id o_tc_duration;
  39.     IBOutlet id o_outline_view;
  40.     NSMutableDictionary *o_outline_dict;
  41. }
  42. - (void)initStrings;
  43. - (playlist_item_t *)selectedPlaylistItem;
  44. - (NSOutlineView *)outlineView;
  45. @end
  46. /*****************************************************************************
  47.  * VLCPlaylistWizard interface
  48.  *****************************************************************************/
  49. @interface VLCPlaylistWizard : VLCPlaylistCommon
  50. {
  51. }
  52. - (IBAction)reloadOutlineView;
  53. @end
  54. /*****************************************************************************
  55.  * VLCPlaylist interface
  56.  *****************************************************************************/
  57. @interface VLCPlaylist : VLCPlaylistCommon
  58. {
  59.     IBOutlet id o_controller;
  60.     IBOutlet id o_playlist_wizard;
  61.     IBOutlet id o_btn_playlist;
  62.     IBOutlet id o_playlist_view;
  63.     IBOutlet id o_status_field;
  64.     IBOutlet id o_search_field;
  65.     IBOutlet id o_mi_save_playlist;
  66.     IBOutlet id o_ctx_menu;
  67.     IBOutlet id o_mi_play;
  68.     IBOutlet id o_mi_delete;
  69.     IBOutlet id o_mi_info;
  70.     IBOutlet id o_mi_preparse;
  71.     IBOutlet id o_mi_revealInFinder;
  72.     IBOutlet id o_mm_mi_revealInFinder;
  73.     IBOutlet id o_mi_dl_cover_art;
  74.     IBOutlet id o_mi_selectall;
  75.     IBOutlet id o_mi_sort_name;
  76.     IBOutlet id o_mi_sort_author;
  77.     IBOutlet id o_mi_recursive_expand;
  78.     /* "services discovery" menu in the playlist menu */
  79.     IBOutlet id o_mi_services;
  80.     IBOutlet id o_mu_services;
  81.     /* "services discovery" menu in the main menu */
  82.     IBOutlet id o_mm_mi_services;
  83.     IBOutlet id o_mm_mu_services;
  84.     IBOutlet id o_save_accessory_view;
  85.     IBOutlet id o_save_accessory_popup;
  86.     IBOutlet id o_save_accessory_text;
  87.     NSImage *o_descendingSortingImage;
  88.     NSImage *o_ascendingSortingImage;
  89.     NSMutableArray *o_nodes_array;
  90.     NSMutableArray *o_items_array;
  91.     BOOL b_selected_item_met;
  92.     BOOL b_isSortDescending;
  93.     id o_tc_sortColumn;
  94.     /* "add node" button and menu entry */
  95.     IBOutlet id o_mi_addNode;
  96.     IBOutlet id o_btn_addNode;
  97. }
  98. - (void)searchfieldChanged:(NSNotification *)o_notification;
  99. - (NSMenu *)menuForEvent:(NSEvent *)o_event;
  100. - (IBAction)searchItem:(id)sender;
  101. - (void)playlistUpdated;
  102. - (void)playModeUpdated;
  103. - (void)sortNode:(int)i_mode;
  104. - (void)updateRowSelection;
  105. - (BOOL)isSelectionEmpty;
  106. - (IBAction)servicesChange:(id)sender;
  107. - (IBAction)playItem:(id)sender;
  108. - (IBAction)revealItemInFinder:(id)sender;
  109. - (IBAction)preparseItem:(id)sender;
  110. - (IBAction)downloadCoverArt:(id)sender;
  111. - (IBAction)savePlaylist:(id)sender;
  112. - (IBAction)deleteItem:(id)sender;
  113. - (IBAction)selectAll:(id)sender;
  114. - (IBAction)sortNodeByName:(id)sender;
  115. - (IBAction)sortNodeByAuthor:(id)sender;
  116. - (IBAction)recursiveExpandNode:(id)sender;
  117. - (IBAction)addNode:(id)sender;
  118. - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
  119. - (void)appendNodeArray:(NSArray*)o_array inNode:(playlist_item_t *)p_node atPos:(int)i_position enqueue:(BOOL)b_enqueue;
  120. @end