X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/62b8c89476c1fa88ca9f53483dc3941db65f9728..20af5f03f5ceee5561784d17bd1456ae56fee6e3:/StatusWindowController.h diff --git a/StatusWindowController.h b/StatusWindowController.h index 307975d..18443dc 100755 --- a/StatusWindowController.h +++ b/StatusWindowController.h @@ -23,11 +23,27 @@ typedef enum { StatusWindowRepeatTrack } StatusWindowRepeatMode; +typedef enum { + StatusWindowNoType = -1, + StatusWindowTrackInfoType, + StatusWindowUpcomingSongsType, + StatusWindowVolumeType, + StatusWindowRatingType, + StatusWindowRepeatType, + StatusWindowShuffleType, + StatusWindowShufflabilityType, + StatusWindowSetupType, + StatusWindowRegistrationType, + StatusWindowNetworkType, + StatusWindowPreferencesType, + StatusWindowDebugType +} StatusWindowType; @interface StatusWindowController : NSObject { StatusWindow *_window; NSUserDefaults *df; NSRange _timeRange; + StatusWindowType _currentType; } + (StatusWindowController *)sharedController; @@ -57,6 +73,7 @@ typedef enum { playCount: (int)playCount image: (NSImage *)art; +- (StatusWindowType)currentStatusWindowType; - (void)updateTime:(NSString *)time; @end