Fixing project references due to the previous upgrade from .xcode to .xcodeproj.
[MenuTunes.git] / StatusWindowController.h
index c5a4566..307975d 100755 (executable)
@@ -27,6 +27,7 @@ typedef enum {
 @interface StatusWindowController : NSObject {
     StatusWindow   *_window;
     NSUserDefaults *df;
+       NSRange _timeRange;
 }
 
 + (StatusWindowController *)sharedController;
@@ -37,6 +38,7 @@ typedef enum {
 - (void)showRatingWindowWithRating:(float)rating;
 - (void)showShuffleWindow:(BOOL)shuffle;
 - (void)showRepeatWindowWithMode:(StatusWindowRepeatMode)mode;
+- (void)showSongShufflabilityWindow:(BOOL)shufflable;
 - (void)showSetupQueryWindow;
 - (void)showRegistrationQueryWindow;
 - (void)showReconnectQueryWindow;
@@ -55,5 +57,6 @@ typedef enum {
                            playCount:                   (int)playCount
                                image:             (NSImage *)art;
 
+- (void)updateTime:(NSString *)time;
 
 @end