3 * StatusWindowController
4 * Abstraction layer between MainController and StatusWindow
6 * Original Author : Matthew Judy <mjudy@ithinksw.com>
7 * Responsibility : Matthew Judy <mjudy@ithinksw.com>
9 * Copyright (c) 2003 iThink Software.
15 #import <Cocoa/Cocoa.h>
16 #import "ITMTRemote.h"
23 StatusWindowRepeatNone = -1,
24 StatusWindowRepeatGroup,
25 StatusWindowRepeatTrack
26 } StatusWindowRepeatMode;
29 @interface StatusWindowController : NSObject {
30 StatusWindow *_window;
34 + (StatusWindowController *)sharedController;
36 - (void)showUpcomingSongsWindowWithTitles:(NSArray *)titleStrings;
38 - (void)showVolumeWindowWithLevel:(float)level;
39 - (void)showRatingWindowWithRating:(float)rating;
40 - (void)showShuffleWindow:(BOOL)shuffle;
41 - (void)showRepeatWindowWithMode:(StatusWindowRepeatMode)mode;
42 - (void)showSetupQueryWindow;
43 - (void)showRegistrationQueryWindow;
45 - (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
46 title: (NSString *)title
47 album: (NSString *)album
48 artist: (NSString *)artist
49 time: (NSString *)time // FLOW: Should probably be NSDate or something.
50 track: (NSString *)track