]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlist.h
String Review round one, Mac OS X interface.
[vlc] / modules / gui / macosx / playlist.h
index 2245ac284fb4469319cdb4f8c6d5f190a5e6ca98..08e8e79fc3d391516fa0b6ea4ad321461e8c359f 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
- * playlist.h: MacOS X interface plugin
+ * playlist.h: MacOS X interface module
  *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: playlist.h,v 1.4 2003/01/20 03:45:06 hartman Exp $
+ * Copyright (C) 2002-2004 VideoLAN
+ * $Id: playlist.h,v 1.20 2004/01/25 17:01:57 murray Exp $
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
- *          Derk-Jan Hartman <thedj@users.sourceforge.net>
+ *          Derk-Jan Hartman <hartman at videolan dot org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -27,7 +27,6 @@
  *****************************************************************************/
 @interface VLCPlaylistView : NSTableView
 {
-
 }
 
 @end
  *****************************************************************************/
 @interface VLCPlaylist : NSObject
 {
+    int i_moveRow;
+    bool b_isSortDescending;
+    
+    IBOutlet id o_window;
+    IBOutlet id o_btn_playlist;
     IBOutlet id o_table_view;
+    
+    IBOutlet id o_status_field;
+    IBOutlet id o_tc_name;
+    IBOutlet id o_tc_author;
+    IBOutlet id o_tc_duration;
+    IBOutlet id o_tc_sortColumn;
 
     IBOutlet id o_ctx_menu;
-
+    IBOutlet id o_mi_save_playlist;
     IBOutlet id o_mi_play;
     IBOutlet id o_mi_delete;
     IBOutlet id o_mi_selectall;
-    
-    IBOutlet id o_btn_add;
-    IBOutlet id o_btn_remove;
+
+    IBOutlet id o_random_ckb;
+    IBOutlet id o_loop_ckb;
+    IBOutlet id o_repeat_ckb;
+
+    IBOutlet id o_search_keyword;
+    IBOutlet id o_search_button;
+
+    NSImage *o_descendingSortingImage;
+    NSImage *o_ascendingSortingImage;
+
 }
 
+- (void)initStrings;
 - (NSMenu *)menuForEvent:(NSEvent *)o_event;
 
+- (IBAction)toggleWindow:(id)sender;
+- (IBAction)savePlaylist:(id)sender;
 - (IBAction)playItem:(id)sender;
 - (IBAction)deleteItems:(id)sender;
 - (IBAction)selectAll:(id)sender;
+- (IBAction)searchItem:(id)sender;
+
+- (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
 
-- (void)appendArray:(NSArray*)o_array atPos:(int)i_pos enqueue:(BOOL)b_enqueue;
+- (void)updateRowSelection;
 - (void)playlistUpdated;
 
 @end