#import <Cocoa/Cocoa.h>
#import "ITMTRemote.h"
-
-
-@class StatusWindow;
+#import "StatusWindow.h"
typedef enum {
+ (StatusWindowController *)sharedController;
-- (void)readDefaults;
-
- (void)showUpcomingSongsWindowWithTitles:(NSArray *)titleStrings;
- (void)showVolumeWindowWithLevel:(float)level;
- (void)showSetupQueryWindow;
- (void)showRegistrationQueryWindow;
- (void)showReconnectQueryWindow;
+- (void)showPreferencesUpdateWindow;
- (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
title: (NSString *)title
artist: (NSString *)artist
time: (NSString *)time // FLOW: Should probably be NSDate or something.
track: (NSString *)track
- rating: (int)rating;
+ rating: (int)rating
+ image: (NSImage *)art;
@end