-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSimpleViewerBackgroundView.m
63 lines (51 loc) · 1.63 KB
/
SimpleViewerBackgroundView.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
//
// SimpleViewerBackgroundView.m
// SimpleCap
//
// Created by - on 09/01/17.
// Copyright 2009 Hiroshi Hashiguchi. All rights reserved.
//
#import "SimpleViewerBackgroundView.h"
#import "UserDefaults.h"
#import <QuartzCore/QuartzCore.h>
@implementation SimpleViewerBackgroundView
- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
[UserDefaults addObserver:self forKey:UDKEY_VIEWER_BACKGROUND];
}
return self;
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
[self setNeedsDisplay:YES];
}
- (void) dealloc
{
[[NSUserDefaults standardUserDefaults] removeObjectForKey:UDKEY_VIEWER_BACKGROUND];
[super dealloc];
}
- (void)drawRect:(NSRect)rect {
int background = [[UserDefaults valueForKey:UDKEY_VIEWER_BACKGROUND] intValue];
if (background == 1) {
CIFilter *filter = [CIFilter filterWithName:@"CICheckerboardGenerator"];
[filter setDefaults];
[filter setValue:[NSNumber numberWithInt:10] forKey:@"inputWidth"];
[filter setValue:[CIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0]
forKey:@"inputColor0"];
[filter setValue:[CIColor colorWithRed:0.75 green:0.75 blue:0.75 alpha:1.0]
forKey:@"inputColor1"];
CIImage *ciimage = [filter valueForKey:kCIOutputImageKey];
CIContext *context = [[NSGraphicsContext currentContext] CIContext];
[context drawImage:ciimage
atPoint:CGPointZero
fromRect:NSRectToCGRect([self bounds])];
} else if (background == 2) {
[[NSColor whiteColor] set];
NSRectFill(rect);
}
}
@end