X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/3b5e8f80a471ff88cd39e8c295276beb7c3412ec..ca5ccb3472e33cd85f4ba7aee7e3ebe4e348b04e:/StatusWindowController.h diff --git a/StatusWindowController.h b/StatusWindowController.h index 2cf440b..118ca38 100755 --- a/StatusWindowController.h +++ b/StatusWindowController.h @@ -14,15 +14,13 @@ #import #import "ITMTRemote.h" - - -@class StatusWindow; +#import "StatusWindow.h" typedef enum { - StatusWindowRepeatNone, + StatusWindowRepeatNone = -1, StatusWindowRepeatGroup, - StatusWindowRepeatSong + StatusWindowRepeatTrack } StatusWindowRepeatMode; @@ -31,22 +29,30 @@ typedef enum { NSUserDefaults *df; } ++ (StatusWindowController *)sharedController; + - (void)showUpcomingSongsWindowWithTitles:(NSArray *)titleStrings; - (void)showVolumeWindowWithLevel:(float)level; -- (void)showRatingWindowWithRating:(int)rating; +- (void)showRatingWindowWithRating:(float)rating; - (void)showShuffleWindow:(BOOL)shuffle; - (void)showRepeatWindowWithMode:(StatusWindowRepeatMode)mode; - (void)showSetupQueryWindow; +- (void)showRegistrationQueryWindow; +- (void)showReconnectQueryWindow; +- (void)showNetworkErrorQueryWindow; +- (void)showPreferencesUpdateWindow; - (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source title: (NSString *)title album: (NSString *)album artist: (NSString *)artist - time: (NSString *)time - trackNumber: (int)trackNumber - trackTotal: (int)trackTotal - rating: (int)rating; + composer: (NSString *)composer + time: (NSString *)time // FLOW: Should probably be NSDate or something. + track: (NSString *)track + rating: (int)rating + playCount: (int)playCount + image: (NSImage *)art; @end