]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlistinfo.h
* Use the playlist info panel instead of the old one everywhere
[vlc] / modules / gui / macosx / playlistinfo.h
index b845ff3b3f7bb8caab718149c14d66e103d8ddc1..db71dc40297b83346c247db15c48fe2c85bb7682 100644 (file)
@@ -2,7 +2,7 @@
  * playlistinfo.h: MacOS X interface module
  *****************************************************************************
  * Copyright (C) 2002-2004 VideoLAN
- * $Id: playlist.h 7015 2004-03-08 15:22:58Z bigben $
+ * $Id$
  *
  * Authors: Benjamin Pracht <bigben at videolan dot org> 
  *
@@ -26,7 +26,7 @@
  *****************************************************************************/
 
 
-@interface VLCPlaylistInfo : NSObject
+@interface VLCInfo : NSObject
 {
     IBOutlet id o_info_window;
     IBOutlet id o_uri_lbl;
     IBOutlet id o_btn_delete_group;
     IBOutlet id o_btn_add_group;
     IBOutlet id o_outline_view;
-    IBOutlet id o_vlc_playlist;
     IBOutlet id o_group_lbl;
     IBOutlet id o_group_cbx;
     IBOutlet id o_group_color;
+
+    int i_item;
+    NSMutableArray * o_selected;
 }
 
 - (IBAction)togglePlaylistInfoPanel:(id)sender;
+- (IBAction)toggleInfoPanel:(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;
 
 @end