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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * playlistinfo.h: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: playlistinfo.h 7801 2004-05-28 16:01:26Z fkuehne $
  6.  *
  7.  * Authors: Benjamin Pracht <bigben at videolan dot org> 
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * 
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * VLCPlaylistInfo interface 
  25.  *****************************************************************************/
  26. @interface VLCInfo : NSObject
  27. {
  28.     IBOutlet id o_info_window;
  29.     IBOutlet id o_uri_lbl;
  30.     IBOutlet id o_title_lbl;
  31.     IBOutlet id o_author_lbl;
  32.     IBOutlet id o_uri_txt;
  33.     IBOutlet id o_title_txt;
  34.     IBOutlet id o_author_txt;
  35.     IBOutlet id o_btn_ok;
  36.     IBOutlet id o_btn_cancel;
  37.     IBOutlet id o_btn_delete_group;
  38.     IBOutlet id o_btn_add_group;
  39.     IBOutlet id o_outline_view;
  40.     IBOutlet id o_group_lbl;
  41.     IBOutlet id o_group_cbx;
  42.     IBOutlet id o_group_color;
  43.     int i_item;
  44.     NSMutableArray * o_selected;
  45. }
  46. - (IBAction)togglePlaylistInfoPanel:(id)sender;
  47. - (IBAction)toggleInfoPanel:(id)sender;
  48. - (void)initPanel:(id)sender;
  49. - (IBAction)infoCancel:(id)sender;
  50. - (IBAction)infoOk:(id)sender;
  51. - (IBAction)handleGroup:(id)sender;
  52. - (IBAction)deleteOutlineGroup:(id)sender;
  53. - (IBAction)createOutlineGroup:(id)sender;
  54. - (void)createComboBox;
  55. - (int)getItem;
  56. @end
  57. @interface VLCInfoTreeItem : NSObject
  58. {
  59.     NSString *o_name;
  60.     NSString *o_value;
  61.     int i_object_id;
  62.     int i_item;
  63.     VLCInfoTreeItem *o_parent;
  64.     NSMutableArray *o_children;
  65. }
  66. + (VLCInfoTreeItem *)rootItem;
  67. - (int)numberOfChildren;
  68. - (VLCInfoTreeItem *)childAtIndex:(int)i_index;
  69. - (NSString *)getName;
  70. - (NSString *)getValue;
  71. - (void)refresh;
  72. @end