X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/4f2a1a6b5d25d7cbae4f356eabe754a4f6e98adb..b20e553e320fc791b9e91b512426e0503ae9b67b:/StatusWindowController.h diff --git a/StatusWindowController.h b/StatusWindowController.h index 826a372..913432b 100755 --- a/StatusWindowController.h +++ b/StatusWindowController.h @@ -1,27 +1,55 @@ /* * MenuTunes * StatusWindowController - * ... + * Abstraction layer between MainController and StatusWindow * - * Original Author : Kent Sutherland - * Responsibility : Kent Sutherland + * Original Author : Matthew Judy + * Responsibility : Matthew Judy * - * Copyright (c) 2002 iThink Software. + * Copyright (c) 2003 iThink Software. * All Rights Reserved * */ #import +#import "ITMTRemote.h" + @class StatusWindow; -@interface StatusWindowController : NSObject -{ - IBOutlet NSTextField *statusField; - IBOutlet StatusWindow *statusWindow; + +typedef enum { + MTStatusWindowLoopModeLoopNone, + MTStatusWindowLoopModeLoopOne, + MTStatusWindowLoopModeLoopAll +} MTStatusWindowLoopMode; + +typedef enum { + MTStatusWindowShuffleModeOn, + MTStatusWindowShuffleModeOff +} MTStatusWindowShuffleMode; + + +@interface StatusWindowController : NSObject { + StatusWindow *_window; + NSUserDefaults *df; } -- (void)setUpcomingSongs:(NSString *)string numSongs:(int)songs; -- (void)setTrackInfo:(NSString *)string lines:(int)lines; -- (void)fadeWindowOut; + +- (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:(float)level; +- (void)showRatingWindowWithLevel:(int)level; +- (void)showShuffleWindowWithMode:(MTStatusWindowShuffleMode)mode; +- (void)showLoopWindowWithMode:(MTStatusWindowLoopMode)mode; + @end