]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlistinfo.h
macosx: fixed l10n of the Growl option
[vlc] / modules / gui / macosx / playlistinfo.h
index 39b8d2517ed6b15d02b6dd19031537097a24282f..01d53470ed3451e9876aa2ea269c481d793a66f9 100644 (file)
@@ -26,6 +26,7 @@
  * VLCPlaylistInfo interface
  *****************************************************************************/
 
+@class VLCInfoTreeItem;
 
 @interface VLCInfo : NSObject
 {
@@ -48,6 +49,8 @@
     IBOutlet id o_date_txt;
     IBOutlet id o_description_lbl;
     IBOutlet id o_description_txt;
+    IBOutlet id o_encodedby_lbl;
+    IBOutlet id o_encodedby_txt;
     IBOutlet id o_genre_lbl;
     IBOutlet id o_genre_txt;
     IBOutlet id o_language_lbl;
@@ -61,7 +64,7 @@
     IBOutlet id o_image_well;
     IBOutlet id o_saveMetaData_btn;
 
-    IBOutlet id o_audio_box;
+    IBOutlet id o_audio_lbl;
     IBOutlet id o_audio_decoded_lbl;
     IBOutlet id o_audio_decoded_txt;
     IBOutlet id o_demux_bitrate_lbl;
@@ -72,7 +75,7 @@
     IBOutlet id o_displayed_txt;
     IBOutlet id o_input_bitrate_lbl;
     IBOutlet id o_input_bitrate_txt;
-    IBOutlet id o_input_box;
+    IBOutlet id o_input_lbl;
     IBOutlet id o_lost_abuffers_lbl;
     IBOutlet id o_lost_abuffers_txt;
     IBOutlet id o_lost_frames_lbl;
     IBOutlet id o_sent_bytes_txt;
     IBOutlet id o_sent_packets_lbl;
     IBOutlet id o_sent_packets_txt;
-    IBOutlet id o_sout_box;
-    IBOutlet id o_video_box;
+    IBOutlet id o_sout_lbl;
+    IBOutlet id o_video_lbl;
     IBOutlet id o_video_decoded_lbl;
     IBOutlet id o_video_decoded_txt;
-       IBOutlet id o_fps_lbl;
-       IBOutlet id o_fps_txt;
 
-    playlist_item_t * p_item;
-    NSTimer * o_statUpdateTimer;
+    VLCInfoTreeItem * rootItem;
+
+    input_item_t * p_item;
 }
 
 - (void)initPanel;
-- (IBAction)saveMetaData:(id)sender;
-- (void)updatePanel;
-- (playlist_item_t *)getItem;
-- (BOOL)isItemInPlaylist:(playlist_item_t *)p_item;
 
+- (IBAction)metaFieldChanged:(id)sender;
+- (IBAction)saveMetaData:(id)sender;
+- (IBAction)downloadCoverArt:(id)sender;
+- (void)initMediaPanelStats;
+- (void)updatePanelWithItem:(input_item_t *)_p_item;
+- (input_item_t *)item;
 - (void)setMeta: (char *)meta forLabel: (id)theItem;
-- (void)updateStatistics: (NSTimer*)theTimer;
+- (void)updateStatistics;
 
 + (VLCInfo *)sharedInstance;
 @end
     NSString *o_name;
     NSString *o_value;
     int i_object_id;
-    playlist_item_t * p_item;
+    input_item_t * p_item;
     VLCInfoTreeItem *o_parent;
     NSMutableArray *o_children;
 }
 
-+ (VLCInfoTreeItem *)rootItem;
 - (int)numberOfChildren;
-- (VLCInfoTreeItem *)childAtIndex:(int)i_index;
-- (NSString *)getName;
-- (NSString *)getValue;
+- (VLCInfoTreeItem *)childAtIndex:(NSUInteger)i_index;
+- (NSString *)name;
+- (NSString *)value;
 - (void)refresh;
 
 @end