]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlistinfo.h
* ALL: releasing a few unreleased objects.
[vlc] / modules / gui / macosx / playlistinfo.h
index db71dc40297b83346c247db15c48fe2c85bb7682..2afe8e5f8996c7fba921b16cf153dbb9138580cd 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * playlistinfo.h: MacOS X interface module
  *****************************************************************************
- * Copyright (C) 2002-2004 VideoLAN
+ * Copyright (C) 2002-2004 the VideoLAN team
  * $Id$
  *
  * Authors: Benjamin Pracht <bigben at videolan dot org> 
     IBOutlet id o_uri_txt;
     IBOutlet id o_title_txt;
     IBOutlet id o_author_txt;
-    IBOutlet id o_btn_info_ok;
-    IBOutlet id o_btn_info_cancel;
+    IBOutlet id o_btn_ok;
+    IBOutlet id o_btn_cancel;
     IBOutlet id o_btn_delete_group;
     IBOutlet id o_btn_add_group;
     IBOutlet id o_outline_view;
-    IBOutlet id o_group_lbl;
-    IBOutlet id o_group_cbx;
-    IBOutlet id o_group_color;
 
-    int i_item;
-    NSMutableArray * o_selected;
+    playlist_item_t * p_item;
 }
 
 - (IBAction)togglePlaylistInfoPanel:(id)sender;
 - (void)initPanel:(id)sender;
 - (IBAction)infoCancel:(id)sender;
 - (IBAction)infoOk:(id)sender;
-- (IBAction)handleGroup:(id)sender;
-- (IBAction)deleteOutlineGroup:(id)sender;
-- (IBAction)createOutlineGroup:(id)sender;
-- (void)createComboBox;
-- (int)getItem;
+- (playlist_item_t *)getItem;
+- (BOOL)isItemInPlaylist:(playlist_item_t *)p_item;
 
 @end
 
@@ -66,7 +59,7 @@
     NSString *o_name;
     NSString *o_value;
     int i_object_id;
-    int i_item;
+    playlist_item_t * p_item;
     VLCInfoTreeItem *o_parent;
     NSMutableArray *o_children;
 }