-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathITTransientStatusWindow.m
403 lines (332 loc) · 10.5 KB
/
ITTransientStatusWindow.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
#import "ITTransientStatusWindow.h"
#import "ITWindowEffect.h"
#import <ApplicationServices/ApplicationServices.h>
#import "ITCoreGraphicsHacks.h"
#import "ITTextField.h"
#import "ITTSWBackgroundView.h"
#define EFFECT_FPS 30.0
/*************************************************************************/
#pragma mark -
#pragma mark PRIVATE METHOD DECLARATIONS
/*************************************************************************/
@interface ITTransientStatusWindow (Private)
- (id)initWithContentView:(NSView *)contentView
exitMode:(ITTransientStatusWindowExitMode)exitMode
backgroundType:(ITTransientStatusWindowBackgroundType)backgroundType;
- (void)rebuildWindow;
- (void)startVanishTimer;
- (void)stopVanishTimer;
@end
/*************************************************************************/
#pragma mark -
#pragma mark IMPLEMENTATION
/*************************************************************************/
@implementation ITTransientStatusWindow
/*************************************************************************/
#pragma mark -
#pragma mark SHARED STATIC OBJECTS
/*************************************************************************/
static ITTransientStatusWindow *staticWindow = nil;
/*************************************************************************/
#pragma mark -
#pragma mark INITIALIZATION METHODS
/*************************************************************************/
+ (ITTransientStatusWindow *)sharedWindow
{
if ( ! (staticWindow) ) {
staticWindow = [[self alloc] initWithContentView:nil
exitMode:ITTransientStatusWindowExitAfterDelay
backgroundType:ITTransientStatusWindowRounded];
}
return staticWindow;
}
- (id)initWithContentView:(NSView *)contentView
exitMode:(ITTransientStatusWindowExitMode)exitMode
backgroundType:(ITTransientStatusWindowBackgroundType)backgroundType
{
NSRect contentRect;
// If no Content View was provided, use a generic view.
if ( ! (contentView) ) {
contentView = [[[NSView alloc] initWithFrame:
NSMakeRect(100.0, 100.0, 200.0, 200.0)] autorelease];
}
// Set the content rect to the frame of the content view, now guaranteed to exist.
contentRect = [contentView frame];
if ( ( self = [super initWithContentRect:contentRect
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:NO] ) ) {
_visibilityState = ITWindowHiddenState;
_exitMode = exitMode;
_exitDelay = DEFAULT_EXIT_DELAY;
_backgroundType = backgroundType;
_verticalPosition = ITWindowPositionBottom;
_horizontalPosition = ITWindowPositionLeft;
_screenPadding = 32.0;
//_screenNumber = 0;
_entryEffect = nil;
_exitEffect = nil;
_reallyIgnoresEvents = YES;
_exitTimer = nil;
[self setScreen:[NSScreen mainScreen]];
// if ( _backgroundType == ITTransientStatusWindowRounded ) {
// _contentSubView = contentView;
// } else {
// [self setContentView:contentView];
// }
[self setIgnoresMouseEvents:YES];
[self setLevel:NSScreenSaverWindowLevel];
[self setContentView:contentView];
[self rebuildWindow];
}
return self;
}
- (void)dealloc
{
[_screen release];
[super dealloc];
}
/*************************************************************************/
#pragma mark -
#pragma mark INSTANCE METHODS
/*************************************************************************/
/*- (BOOL)ignoresMouseEvents
{
return _reallyIgnoresEvents;
}
- (void)setIgnoresMouseEvents:(BOOL)flag
{
//CGSValueObj key;
//CGSValueObj ignore;
CGSWindowTag tags;
key = CGSCreateCString("IgnoreForEvents");
ignore = CGSCreateBoolean( (flag ? kCGSTrue : kCGSFalse) );
CGSSetWindowProperty([NSApp contextID], (CGSWindowID)[self windowNumber], key, ignore);
CGSReleaseObj(key);
CGSReleaseObj(ignore);
CGSGetWindowTags([NSApp contextID], (CGSWindowID)[self windowNumber], &tags, 32);
if (flag) {
tags = tags | CGSTagTransparent;
} else {
tags = tags & CGSTagTransparent;
}
NSLog(@"ignore? %i", flag);
CGSSetWindowTags([NSApp contextID], (CGSWindowID)[self windowNumber], &tags, 32);
_reallyIgnoresEvents = flag;
}*/
/*
- (id)contentView
{
if ( _backgroundType == ITTransientStatusWindowRounded ) {
return _contentSubView;
} else {
return [super contentView];
}
}
- (void)setContentView:(NSView *)aView
{
if ( _backgroundType == ITTransientStatusWindowRounded ) {
[_contentSubView removeFromSuperview];
_contentSubView = aView;
[_contentSubView setFrame:[[super contentView] frame]];
[[super contentView] addSubview:_contentSubView];
[_contentSubView setNextResponder:self];
} else {
[super setContentView:aView];
}
}
*/
- (IBAction)appear:(id)sender
{
if ( _visibilityState == ITWindowHiddenState ) {
// Window is hidden. Appear as normal, and start the timer.
[_entryEffect performAppear];
} else if ( _visibilityState == ITWindowVisibleState ) {
// Window is completely visible. Simply reset the timer.
[self startVanishTimer];
} else if ( _visibilityState == ITWindowAppearingState ) {
// Window is on its way in. Do nothing.
} else if ( _visibilityState == ITWindowVanishingState ) {
// Window is on its way out. Cancel the vanish.
[_exitEffect cancelVanish];
}
}
- (IBAction)vanish:(id)sender
{
if ( _visibilityState == ITWindowVisibleState ) {
// Window is totally visible. Perform exit effect.
[_exitEffect performVanish];
} else if ( _visibilityState == ITWindowHiddenState ) {
// Window is hidden. Do nothing.
} else if ( _visibilityState == ITWindowAppearingState ) {
// Window is on its way in. Cancel appear.
[_entryEffect cancelAppear];
} else if ( _visibilityState == ITWindowVanishingState ) {
// Window is on its way out. Do nothing.
}
}
- (void)setScreen:(NSScreen *)newScreen
{
[_screen release];
_screen = [newScreen retain];
}
- (NSScreen *)screen
{
return _screen;
}
- (void)setSizing:(ITTransientStatusWindowSizing)newSizing
{
_sizing = newSizing;
}
- (ITTransientStatusWindowSizing)sizing
{
return _sizing;
}
- (ITWindowVisibilityState)visibilityState
{
return _visibilityState;
}
- (void)setVisibilityState:(ITWindowVisibilityState)newState
{
_visibilityState = newState;
if ( _visibilityState == ITWindowVisibleState ) {
[self startVanishTimer];
} else if ( (_visibilityState == ITWindowVanishingState) || (_visibilityState == ITWindowHiddenState) ) {
[self stopVanishTimer];
}
}
- (ITTransientStatusWindowExitMode)exitMode
{
return _exitMode;
}
- (void)setExitMode:(ITTransientStatusWindowExitMode)newMode
{
_exitMode = newMode;
if ( _visibilityState == ITWindowVisibleState ) {
if ( _exitMode == ITTransientStatusWindowExitOnCommand ) {
[self stopVanishTimer];
} else if ( _exitMode == ITTransientStatusWindowExitAfterDelay ) {
[self startVanishTimer];
}
}
}
- (float)exitDelay
{
return _exitDelay;
}
- (void)setExitDelay:(float)seconds
{
_exitDelay = seconds;
}
- (ITTransientStatusWindowBackgroundType)backgroundType
{
// return _backgroundType;
return ITTransientStatusWindowRounded;
}
- (void)setBackgroundType:(ITTransientStatusWindowBackgroundType)newType
{
// setBackgroundType: is currently ignored. Defaults to ITTransientStatusWindowRounded.
// _backgroundType = newType;
_backgroundType = ITTransientStatusWindowRounded;
}
- (ITVerticalWindowPosition)verticalPosition;
{
return _verticalPosition;
}
- (void)setVerticalPosition:(ITVerticalWindowPosition)newPosition;
{
_verticalPosition = newPosition;
}
- (ITHorizontalWindowPosition)horizontalPosition;
{
return _horizontalPosition;
}
- (void)setHorizontalPosition:(ITHorizontalWindowPosition)newPosition;
{
_horizontalPosition = newPosition;
}
- (float)effectProgress
{
return _effectProgress;
}
- (void)setEffectProgress:(float)newProgress
{
_effectProgress = newProgress;
}
- (float)screenPadding
{
return _screenPadding;
}
- (void)setScreenPadding:(float)newPadding
{
_screenPadding = newPadding;
}
/*- (int)screenNumber
{
return _screenNumber;
}
- (void)setScreenNumber:(int)newNumber
{
_screenNumber = newNumber;
}*/
- (ITWindowEffect *)entryEffect
{
return _entryEffect;
}
- (void)setEntryEffect:(ITWindowEffect *)newEffect
{
[_entryEffect releaseWhenIdle];
_entryEffect = [newEffect retain];
}
- (ITWindowEffect *)exitEffect
{
return _exitEffect;
}
- (void)setExitEffect:(ITWindowEffect *)newEffect
{
[_exitEffect releaseWhenIdle];
_exitEffect = [newEffect retain];
}
/*************************************************************************/
#pragma mark -
#pragma mark PRIVATE METHODS
/*************************************************************************/
- (void)rebuildWindow;
{
if ( _backgroundType == ITTransientStatusWindowRounded ) {
ITTSWBackgroundView *roundedView = [[[ITTSWBackgroundView alloc] initWithFrame:[self frame]] autorelease];
[self setBackgroundColor:[NSColor clearColor]];
[self setHasShadow:NO];
[self setOpaque:NO];
[self setContentView:roundedView];
// [super setContentView:roundedView];
// [_contentSubView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
// [self setContentView:_contentSubView];
} else {
// YUO == CLWONBAOT
}
}
- (void)startVanishTimer
{
if ( _exitMode == ITTransientStatusWindowExitAfterDelay) {
[self stopVanishTimer];
_exitTimer = [NSTimer scheduledTimerWithTimeInterval:_exitDelay
target:self
selector:@selector(doDelayedExit)
userInfo:nil
repeats:NO];
}
}
- (void)doDelayedExit
{
[self vanish:self];
_exitTimer = nil;
}
- (void)stopVanishTimer
{
if ( _exitTimer ) {
[_exitTimer invalidate];
_exitTimer = nil;
}
}
@end