Implemented time ticking in song info status window.
[MenuTunes.git] / StatusWindowController.h
index 118ca38..b192d36 100755 (executable)
@@ -27,6 +27,7 @@ typedef enum {
 @interface StatusWindowController : NSObject {
     StatusWindow   *_window;
     NSUserDefaults *df;
+       NSRange _timeRange;
 }
 
 + (StatusWindowController *)sharedController;
@@ -42,6 +43,7 @@ typedef enum {
 - (void)showReconnectQueryWindow;
 - (void)showNetworkErrorQueryWindow;
 - (void)showPreferencesUpdateWindow;
+- (void)showDebugModeEnabledWindow;
 
 - (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
                                title:            (NSString *)title
@@ -54,5 +56,6 @@ typedef enum {
                            playCount:                   (int)playCount
                                image:             (NSImage *)art;
 
+- (void)updateTime:(NSString *)time;
 
 @end