-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCaptureWindow.m
53 lines (43 loc) · 1008 Bytes
/
CaptureWindow.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
//
// CaptureWindow.m
// SimpleCap
//
// Created by - on 08/03/05.
// Copyright 2008 Hiroshi Hashiguchi. All rights reserved.
//
#import "CaptureWindow.h"
@implementation CaptureWindow
- (id)initWithFrame:(NSRect)frame
{
self = [super initWithContentRect:frame
styleMask:NSBorderlessWindowMask|NSNonactivatingPanelMask|NSUtilityWindowMask
backing:NSBackingStoreBuffered
defer:NO];
if (self) {
[self setReleasedWhenClosed:YES];
[self setDisplaysWhenScreenProfileChanges:YES];
[self setBackgroundColor:[NSColor clearColor]];
[self setOpaque:NO];
[self setHasShadow:NO];
// [self setIgnoresMouseEvents:NO];
[self setCollectionBehavior:NSWindowCollectionBehaviorCanJoinAllSpaces];
}
return self;
}
- (void) dealloc
{
[super dealloc];
}
- (BOOL)canBecomeKeyWindow
{
return YES;
}
- (void)keyDown:(NSEvent *)theEvent
{
[[self contentView] keyDown:theEvent];
}
- (void)flagsChanged:(NSEvent *)theEvent
{
[[self contentView] flagsChanged:theEvent];
}
@end