X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/b936ca5ffb6320a3febce6a7d0c2875b072ac6bc..b20e553e320fc791b9e91b512426e0503ae9b67b:/StatusWindowController.h diff --git a/StatusWindowController.h b/StatusWindowController.h index 9f474b5..913432b 100755 --- a/StatusWindowController.h +++ b/StatusWindowController.h @@ -13,6 +13,7 @@ #import +#import "ITMTRemote.h" @class StatusWindow; @@ -32,19 +33,21 @@ typedef enum { @interface StatusWindowController : NSObject { StatusWindow *_window; + NSUserDefaults *df; } -- (void)showSongWindowWithTitle:(NSString *)title - album:(NSString *)album - artist:(NSString *)artist - time:(NSString *)time // FLOW: Should probably be NSDate or something. - trackNumber: (int)trackNumber - trackTotal: (int)trackTotal - rating: (int)rating; +- (void)showSongWindowWithTitle: (NSString *)title + album: (NSString *)album + artist: (NSString *)artist + time: (NSString *)time // FLOW: Should probably be NSDate or something. + trackNumber: (int)trackNumber + trackTotal: (int)trackTotal + rating: (int)rating + source:(ITMTRemotePlayerSource)source; - (void)showUpcomingSongsWithTitles:(NSArray *)titleStrings; -- (void)showVolumeWindowWithLevel:(int)level; +- (void)showVolumeWindowWithLevel:(float)level; - (void)showRatingWindowWithLevel:(int)level; - (void)showShuffleWindowWithMode:(MTStatusWindowShuffleMode)mode; - (void)showLoopWindowWithMode:(MTStatusWindowLoopMode)mode;