-
Notifications
You must be signed in to change notification settings - Fork 10
/
ThumbnailPanel.m
91 lines (76 loc) · 1.66 KB
/
ThumbnailPanel.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
84
85
86
87
88
89
90
91
#import "ThumbnailPanel.h"
@implementation ThumbnailPanel
//-(BOOL)canBecomeKeyWindow{return YES;}
-(void)awakeFromNib
{
[self setAcceptsMouseMovedEvents:YES];
[self makeFirstResponder:matrix];
}
- (void)setTarget:(ThumbnailController *)tar
{
target = tar;
}
- (void)setAction:(SEL)sel
{
selector = sel;
}
/*
- (void)mouseMoved:(NSEvent *)theEvent
{
[super mouseMoved:theEvent];
NSLog(@"kita0");
}
*/
-(void)becomeKeyWindow
{
[super becomeKeyWindow];
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DontHideMenuBar"] == NO) [NSMenu setMenuBarVisible:NO];
}
-(void)resignKeyWindow
{
//[self performClose:self];
[super resignKeyWindow];
}
-(NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)aScreen
{
if ([NSMenu menuBarVisible]) {
NSRect result = [[NSScreen mainScreen] frame];
result.size.height -= 6;
return result;
}
//NSRect result = [[NSScreen mainScreen] frame];
NSRect result=[super constrainFrameRect:[[NSScreen mainScreen] frame] toScreen:aScreen];
result.size.height+= 16;
return result;
}
- (void)performClose:(id)sender
{
[super performClose:sender];
[target performSelector:@selector(clearCell)];
}
- (void)sendEvent:(NSEvent *)theEvent
{
if ([theEvent type] == NSKeyDown) {
[target performSelector:@selector(action:) withObject:theEvent];
} else {
[super sendEvent:theEvent];
}
}
/*
- (void)keyDown:(NSEvent *)theEvent
{
NSLog(@"kita");
[target performSelector:@selector(action:) withObject:theEvent];
}*/
- (void)scrollWheel:(NSEvent *)theEvent
{
if (setting == 0) {
return;
}
[target performSelector:@selector(wheelAction:) withObject:theEvent];
}
-(void)wheelSetting:(float)set
{
setting = set;
}
@end