-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathScreen.m
73 lines (57 loc) · 1.21 KB
/
Screen.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
//
// Screen.m
// SimpleCap
//
// Created by - on 08/07/27.
// Copyright 2008 Hiroshi Hashiguchi. All rights reserved.
//
#import "Screen.h"
@implementation Screen
- (void)update
{
NSScreen* screen;
_frame = NSZeroRect;
for (screen in [NSScreen screens]) {
NSRect sf = [screen frame];
_frame = NSUnionRect(_frame, sf);
}
NSArray* screen_list = [NSScreen screens];
_menu_frame = NSZeroRect;
if ([screen_list count] > 0) {
screen = [screen_list objectAtIndex:0];
_menu_frame = [screen frame];
}
}
static Screen* _screen = nil;
+ (Screen*)defaultScreen
{
if (!_screen) {
_screen = [[Screen alloc] init];
[[NSNotificationCenter defaultCenter] addObserver:_screen
selector:@selector(screenChanged:)
name:NSApplicationDidChangeScreenParametersNotification
object:nil];
[_screen update];
}
return _screen;
}
- (void)screenChanged:(NSNotification *)notification
{
[self update];
}
- (NSRect)frame;
{
return _frame;
}
- (NSRect)menuScreenFrame
{
return _menu_frame;
}
- (CGRect)frameInCGCoordinate
{
CGRect cgrect = NSRectToCGRect(_frame);
cgrect.origin.y = _menu_frame.size.height
- (_frame.origin.y + _frame.size.height);
return cgrect;
}
@end