Implemented time ticking in song info status window.
[MenuTunes.git] / StatusWindowController.h
index c0ec9eb..b192d36 100755 (executable)
@@ -27,6 +27,7 @@ typedef enum {
 @interface StatusWindowController : NSObject {
     StatusWindow   *_window;
     NSUserDefaults *df;
+       NSRange _timeRange;
 }
 
 + (StatusWindowController *)sharedController;
@@ -40,7 +41,9 @@ typedef enum {
 - (void)showSetupQueryWindow;
 - (void)showRegistrationQueryWindow;
 - (void)showReconnectQueryWindow;
+- (void)showNetworkErrorQueryWindow;
 - (void)showPreferencesUpdateWindow;
+- (void)showDebugModeEnabledWindow;
 
 - (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
                                title:            (NSString *)title
@@ -50,7 +53,9 @@ typedef enum {
                                 time:            (NSString *)time  // FLOW: Should probably be NSDate or something.
                                track:            (NSString *)track
                               rating:                   (int)rating
+                           playCount:                   (int)playCount
                                image:             (NSImage *)art;
 
+- (void)updateTime:(NSString *)time;
 
 @end