00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 @interface VLCInfo : NSObject
00030 {
00031 IBOutlet id o_info_window;
00032 IBOutlet id o_uri_lbl;
00033 IBOutlet id o_title_lbl;
00034 IBOutlet id o_author_lbl;
00035 IBOutlet id o_uri_txt;
00036 IBOutlet id o_title_txt;
00037 IBOutlet id o_author_txt;
00038 IBOutlet id o_btn_ok;
00039 IBOutlet id o_btn_cancel;
00040 IBOutlet id o_btn_delete_group;
00041 IBOutlet id o_btn_add_group;
00042 IBOutlet id o_outline_view;
00043
00044 playlist_item_t * p_item;
00045 }
00046
00047 - (IBAction)togglePlaylistInfoPanel:(id)sender;
00048 - (IBAction)toggleInfoPanel:(id)sender;
00049 - (void)initPanel:(id)sender;
00050 - (IBAction)infoCancel:(id)sender;
00051 - (IBAction)infoOk:(id)sender;
00052 - (playlist_item_t *)getItem;
00053 - (BOOL)isItemInPlaylist:(playlist_item_t *)p_item;
00054
00055 @end
00056
00057 @interface VLCInfoTreeItem : NSObject
00058 {
00059 NSString *o_name;
00060 NSString *o_value;
00061 int i_object_id;
00062 playlist_item_t * p_item;
00063 VLCInfoTreeItem *o_parent;
00064 NSMutableArray *o_children;
00065 }
00066
00067 + (VLCInfoTreeItem *)rootItem;
00068 - (int)numberOfChildren;
00069 - (VLCInfoTreeItem *)childAtIndex:(int)i_index;
00070 - (NSString *)getName;
00071 - (NSString *)getValue;
00072 - (void)refresh;
00073
00074 @end
00075