-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCaptureView.m
83 lines (64 loc) · 1.29 KB
/
CaptureView.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
//
// CaptureView.m
// SimpleCap
//
// Created by - on 08/03/05.
// Copyright 2008 Hiroshi Hashiguchi. All rights reserved.
//
#import "CaptureView.h"
#import "AppController.h"
#import "Handler.h"
@implementation CaptureView
- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
_tracking_area = [[NSTrackingArea alloc] initWithRect:frame
options:(NSTrackingMouseMoved |NSTrackingActiveAlways)
owner:self
userInfo:nil];
[self addTrackingArea:_tracking_area];
}
return self;
}
- (void)drawRect:(NSRect)rect {
[_handler drawRect:rect];
}
- (void) dealloc
{
[self removeTrackingArea:_tracking_area];
[_tracking_area release];
[super dealloc];
}
- (void)mouseDown:(NSEvent *)theEvent
{
[_handler mouseDown:theEvent];
}
- (void)mouseMoved:(NSEvent *)theEvent
{
[_handler mouseMoved:theEvent];
}
- (BOOL)isFlipped
{
return YES;
}
- (void)setHandler:(Handler*)handler
{
_handler = handler;
}
- (void)keyDown:(NSEvent *)theEvent
{
[_handler keyDown:theEvent];
}
- (void)flagsChanged:(NSEvent *)theEvent
{
[_handler flagsChanged:theEvent];
}
- (BOOL)acceptsFirstMouse:(NSEvent *)theEvent
{
return YES;
}
- (NSMenu *)menuForEvent:(NSEvent *)theEvent
{
return [_handler menuForEvent:theEvent];
}
@end