aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/SimpleCocoaApp/SkNSWindow.mm
blob: 5f4d65e315c5883e3ec122cd4935c66082bf8dcc (plain)
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
#import "SkNSWindow.h"
#import "SkEvent.h"
#define SkEventClass @"SkEvent"
@implementation SkNSWindow

-(id) initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle 
                  backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag {
    self = [super initWithContentRect:contentRect styleMask:aStyle 
                              backing:bufferingType defer:flag];
    if (self) {
        //Register as an observer for SkEventClass events and call 
        //receiveSkEvent: upon receiving the event
        [[NSNotificationCenter defaultCenter] addObserver:self 
         selector:@selector(receiveSkEvent:) name:SkEventClass object:nil];
    }
    return self;
}

-(void) dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    [super dealloc];
}

-(void) installSkViews {
    //to be overwritten by subclass
}

-(BOOL) acceptsFirstResponder {
    return YES;
}

-(void) receiveSkEvent:(NSNotification *)notification {
    if(SkEvent::ProcessEvent())
        SkEvent::SignalNonEmptyQueue();
}

+(void) postTimedEvent:(NSTimeInterval)ti {
    [NSTimer scheduledTimerWithTimeInterval:ti target:self 
                                   selector:@selector(timerFireMethod:)
                                   userInfo:nil repeats:NO];
}

+(void) timerFireMethod:(NSTimer*)theTimer {
	SkEvent::ServiceQueueTimer();
}
@end
////////////////////////////////////////////////////////////////////////////////
void SkEvent::SignalNonEmptyQueue() {
    //post a SkEventClass event to the default notification center
    [[NSNotificationCenter defaultCenter] postNotificationName:SkEventClass 
                                                        object:nil];
}

void SkEvent::SignalQueueTimer(SkMSec delay) {
	if (delay) {
        //Convert to seconds
        NSTimeInterval ti = delay/(float)SK_MSec1;
        [SkNSWindow postTimedEvent:ti];
	}  
}