-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStatusWindowController.m
executable file
·409 lines (343 loc) · 16.2 KB
/
StatusWindowController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#import "StatusWindowController.h"
#import "StatusWindow.h"
#import "PreferencesController.h"
#import "MainController.h"
#import <ITKit/ITTSWBackgroundView.h>
#import <ITKit/ITWindowEffect.h>
#import <ITKit/ITCutWindowEffect.h>
#import <ITKit/ITDissolveWindowEffect.h>
#import <ITKit/ITSlideHorizontallyWindowEffect.h>
#import <ITKit/ITSlideVerticallyWindowEffect.h>
#import <ITKit/ITPivotWindowEffect.h>
static StatusWindowController *sharedController;
@implementation StatusWindowController
+ (StatusWindowController *)sharedController
{
if ( ! sharedController ) {
sharedController = [[StatusWindowController alloc] init];
}
return sharedController;
}
- (id)init
{
if ( ( self = [super init] ) ) {
float exitDelay;
NSString *entryClass;
NSString *exitClass;
NSArray *classList = [ITWindowEffect effectClasses];
float entrySpeed;
float exitSpeed;
NSArray *screens = [NSScreen screens];
int screenIndex;
NSData *colorData;
ITWindowEffect *entryEffect;
ITWindowEffect *exitEffect;
_currentType = StatusWindowNoType;
_window = [[StatusWindow sharedWindow] retain];
df = [[NSUserDefaults standardUserDefaults] retain];
exitDelay = [df floatForKey:@"statusWindowVanishDelay"];
entryClass = [df stringForKey:@"statusWindowAppearanceEffect"];
exitClass = [df stringForKey:@"statusWindowVanishEffect"];
entrySpeed = [df floatForKey:@"statusWindowAppearanceSpeed"];
exitSpeed = [df floatForKey:@"statusWindowVanishSpeed"];
screenIndex = [df integerForKey:@"statusWindowScreenIndex"];
if (screenIndex >= [screens count]) {
screenIndex = 0;
}
[_window setScreen:[screens objectAtIndex:screenIndex]];
[_window setExitMode:ITTransientStatusWindowExitAfterDelay];
[_window setExitDelay:(exitDelay ? exitDelay : 4.0)];
[_window setHorizontalPosition:[df integerForKey:@"statusWindowHorizontalPosition"]];
[_window setVerticalPosition:[df integerForKey:@"statusWindowVerticalPosition"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
if ( [classList containsObject:NSClassFromString(entryClass)] ) {
entryEffect = [[[NSClassFromString(entryClass) alloc] initWithWindow:_window] autorelease];
} else {
entryEffect = [[[ITCutWindowEffect alloc] initWithWindow:_window] autorelease];
}
if ( [classList containsObject:NSClassFromString(exitClass)] ) {
exitEffect = [[[NSClassFromString(exitClass) alloc] initWithWindow:_window] autorelease];
} else {
exitEffect = [[[ITDissolveWindowEffect alloc] initWithWindow:_window] autorelease];
}
[_window setEntryEffect:entryEffect];
[_window setExitEffect:exitEffect];
[[_window entryEffect] setEffectTime:(entrySpeed ? entrySpeed : 0.8)];
[[_window exitEffect] setEffectTime:(exitSpeed ? exitSpeed : 0.8)];
[(ITTSWBackgroundView *)[_window contentView]setBackgroundMode:
(ITTSWBackgroundMode)[df integerForKey:@"statusWindowBackgroundMode"]];
colorData = [df dataForKey:@"statusWindowBackgroundColor"];
if ( colorData ) {
[(ITTSWBackgroundView *)[_window contentView] setBackgroundColor:
(NSColor *)[NSUnarchiver unarchiveObjectWithData:colorData]];
} else {
[(ITTSWBackgroundView *)[_window contentView] setBackgroundColor:[NSColor blueColor]];
}
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenParametersChanged:) name:NSApplicationDidChangeScreenParametersNotification object:nil];
}
return self;
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[_window release];
[super dealloc];
}
- (void)screenParametersChanged:(NSNotification *)notification
{
NSArray *screens = [NSScreen screens];
int screenIndex = [df integerForKey:@"statusWindowScreenIndex"];
if (screenIndex >= [screens count]) {
screenIndex = 0;
}
[_window setScreen:[screens objectAtIndex:screenIndex]];
}
- (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source
title: (NSString *)title
album: (NSString *)album
artist: (NSString *)artist
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
{
NSImage *image = nil;
NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString:title];
if ( art != nil ) {
image = art;
} else if ( source == ITMTRemoteLibrarySource ) {
image = [NSImage imageNamed:@"Library"];
} else if ( source == ITMTRemoteCDSource ) {
image = [NSImage imageNamed:@"CD"];
} else if ( source == ITMTRemoteRadioSource ) {
image = [NSImage imageNamed:@"Radio"];
} else if ( source == ITMTRemoteiPodSource ) {
image = [NSImage imageNamed:@"iPod"];
} else if ( source == ITMTRemoteGenericDeviceSource ) {
image = [NSImage imageNamed:@"MP3Player"];
} else if ( source == ITMTRemoteSharedLibrarySource ) {
image = [NSImage imageNamed:@"Library"];
}
[_window setImage:image];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
if ( album ) {
[[text mutableString] appendFormat:@"\n%@", album];
//text = [text stringByAppendingString:[@"\n" stringByAppendingString:album]];
}
if ( artist ) {
[[text mutableString] appendFormat:@"\n%@", artist];
//text = [text stringByAppendingString:[@"\n" stringByAppendingString:artist]];
}
if ( composer ) {
[[text mutableString] appendFormat:@"\n%@", composer];
//text = [text stringByAppendingString:[@"\n" stringByAppendingString:composer]];
}
if ( time ) {
_timeRange = NSMakeRange([[text mutableString] length] + 1, [time length]);
[[text mutableString] appendFormat:@"\n%@", time];
//text = [text stringByAppendingString:[@"\n" stringByAppendingString:time]];
}
if ( track ) {
[[text mutableString] appendFormat:@"\n%@", track];
//text = [text stringByAppendingString:[@"\n" stringByAppendingString:track]];
}
if (playCount > -1) {
[[text mutableString] appendFormat:@"\n%@: %i", NSLocalizedString(@"playCount", @"Play Count"), playCount];
//text = [text stringByAppendingString:[NSString stringWithFormat:@"\n%@: %i", NSLocalizedString(@"playCount", @"Play Count"), playCount]];
}
if ( rating > -1 ) {
NSString *ratingString = [NSString string];
NSString *emptyChar = [NSString stringWithUTF8String:"☆"];
NSString *fullChar = [NSString stringWithUTF8String:"★"];
int i, start = [[text mutableString] length], size = 18;
for ( i = 1; i < 6; i++ ) {
if ( rating >= i ) {
ratingString = [ratingString stringByAppendingString:fullChar];
} else {
ratingString = [ratingString stringByAppendingString:emptyChar];
}
}
[[text mutableString] appendFormat:@"\n%@", ratingString];
if ([_window sizing] == ITTransientStatusWindowSmall) {
size /= SMALL_DIVISOR;
} else if ([_window sizing] == ITTransientStatusWindowMini) {
size /= MINI_DIVISOR;
}
[text setAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSFont fontWithName:@"AppleGothic" size:size], NSFontAttributeName, nil, nil] range:NSMakeRange(start + 1, 5)];
//text = [text stringByAppendingString:[@"\n" stringByAppendingString:ratingString]];
}
_currentType = StatusWindowTrackInfoType;
[_window buildTextWindowWithString:text];
[_window appear:self];
[text release];
}
- (void)showAlbumArtWindowWithImage:(NSImage *)image
{
if (image) {
_currentType = StatusWindowAlbumArtType;
[_window setImage:[NSImage imageNamed:@"Library"]];
[_window buildImageWindowWithImage:image];
[_window appear:self];
}
}
- (void)showAlbumArtWindowWithErrorText:(NSString *)string
{
if (string && [string length] > 0) {
_currentType = StatusWindowAlbumArtType;
[_window buildTextWindowWithString:string];
[_window appear:self];
}
}
- (void)showUpcomingSongsWindowWithTitles:(NSArray *)titleStrings
{
// NSString *bull = [NSString stringWithUTF8String:"‣ "];
NSString *bull = [NSString stringWithUTF8String:"♪ "];
NSString *end = [@"\n" stringByAppendingString:bull];
[_window setImage:[NSImage imageNamed:@"Upcoming"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:[bull stringByAppendingString:[titleStrings componentsJoinedByString:end]]];
_currentType = StatusWindowUpcomingSongsType;
[_window appear:self];
}
- (void)showVolumeWindowWithLevel:(float)level
{
[_window setImage:[NSImage imageNamed:@"Volume"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildMeterWindowWithCharacter:[NSString stringWithUTF8String:"▊"]
size:18
count:10
active:( ceil(level * 100) / 10 )];
_currentType = StatusWindowVolumeType;
[_window appear:self];
}
- (void)showRatingWindowWithRating:(float)rating
{
[_window setImage:[NSImage imageNamed:@"Rating"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildMeterWindowWithCharacter:[NSString stringWithUTF8String:"★"]
size:48
count:5
active:( ceil(rating * 100) / 20 )];
_currentType = StatusWindowRatingType;
[_window appear:self];
}
- (void)showShuffleWindow:(BOOL)shuffle
{
[_window setImage:[NSImage imageNamed:@"Shuffle"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:( shuffle ? NSLocalizedString(@"shuffleOn", @"Shuffle On") : NSLocalizedString(@"shuffleOff", @"Shuffle Off"))];
_currentType = StatusWindowRatingType;
[_window appear:self];
}
- (void)showRepeatWindowWithMode:(StatusWindowRepeatMode)mode
{
NSString *string = nil;
if ( mode == StatusWindowRepeatNone ) {
string = NSLocalizedString(@"repeatOff", @"Repeat Off");
} else if ( mode == StatusWindowRepeatGroup ) {
string = NSLocalizedString(@"repeatPlaylist", @"Repeat Playlist");
} else if ( mode == StatusWindowRepeatTrack ) {
string = NSLocalizedString(@"repeatOneTrack", @"Repeat One Track");;
}
[_window setImage:[NSImage imageNamed:@"Repeat"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:string];
_currentType = StatusWindowRepeatType;
[_window appear:self];
}
- (void)showSongShufflabilityWindow:(BOOL)shufflable
{
[_window setImage:[NSImage imageNamed:@"Shuffle"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildTextWindowWithString:( !shufflable ? NSLocalizedString(@"shufflableOn", @"Current Song Skipped When Shuffling") : NSLocalizedString(@"shufflableOff", @"Current Song Not Skipped When Shuffling"))];
_currentType = StatusWindowShufflabilityType;
[_window appear:self];
}
- (void)showSetupQueryWindow
{
NSString *message = NSLocalizedString(@"autolaunch_msg", @"Would you like MenuTunes to launch\nautomatically at startup?");
[_window setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:NSLocalizedString(@"launch_at_startup", @"Launch at Startup")
alternateButton:NSLocalizedString(@"launch_manually", @"Launch Manually")
target:[PreferencesController sharedPrefs]
defaultAction:@selector(autoLaunchOK)
alternateAction:@selector(autoLaunchCancel)];
_currentType = StatusWindowSetupType;
[_window appear:self];
[_window setLocked:YES];
}
- (void)showReconnectQueryWindow
{
NSString *message = NSLocalizedString(@"sharedplayeravailable_msg", @"The selected shared player is available again.\nWould you like to reconnect to it?");
[_window setLocked:NO];
[_window setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:NSLocalizedString(@"reconnect", @"Reconnect")
alternateButton:NSLocalizedString(@"ignore", @"Ignore")
target:[MainController sharedController]
defaultAction:@selector(reconnect)
alternateAction:@selector(cancelReconnect)];
_currentType = StatusWindowNetworkType;
[_window appear:self];
[_window setLocked:YES];
}
- (void)showNetworkErrorQueryWindow
{
NSString *message = NSLocalizedString(@"sharedplayerunreachable_msg", @"The remote MenuTunes server is unreachable.\nMenuTunes will revert back to the local player.");
[_window setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:@" OK "
alternateButton:nil
target:[MainController sharedController]
defaultAction:@selector(cancelReconnect)
alternateAction:nil];
_currentType = StatusWindowNetworkType;
[_window appear:self];
[_window setLocked:YES];
}
- (void)showPreferencesUpdateWindow
{
NSString *message = NSLocalizedString(@"reconfigureprefs_msg", @"The new features in this version of MenuTunes\nrequire you to reconfigure your preferences.");
[_window setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:message
defaultButton:NSLocalizedString(@"showpreferences", @"Show Preferences")
alternateButton:@"OK"
target:[MainController sharedController]
defaultAction:@selector(showPreferencesAndClose)
alternateAction:@selector(cancelReconnect)];
_currentType = StatusWindowPreferencesType;
[_window appear:self];
[_window setLocked:YES];
}
- (void)showDebugModeEnabledWindow
{
[_window setImage:[NSImage imageNamed:@"Setup"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
[_window buildDialogWindowWithMessage:NSLocalizedString(@"debugmodeenabled", @"Debug Mode Enabled")
defaultButton:@"OK"
alternateButton:nil
target:[MainController sharedController]
defaultAction:@selector(cancelReconnect)
alternateAction:nil];
_currentType = StatusWindowDebugType;
[_window appear:self];
[_window setLocked:YES];
}
- (StatusWindowType)currentStatusWindowType
{
return _currentType;
}
- (void)updateTime:(NSString *)time
{
if (time && [time length]) {
[_window updateTime:time range:_timeRange];
}
}
@end