forked from glebd/bwtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BWAddSheetBottomBar.m
51 lines (41 loc) · 1.27 KB
/
BWAddSheetBottomBar.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
//
// BWAddSheetBottomBar.m
// BWToolkit
//
// Created by Brandon Walkin (www.brandonwalkin.com)
// All code is provided under the New BSD license.
//
#import "BWAddSheetBottomBar.h"
#import "NSWindow-NSTimeMachineSupport.h"
@interface NSWindow (BWPrivate)
- (void)setBottomCornerRounded:(BOOL)flag;
@end
@implementation BWAddSheetBottomBar
- (id)initWithCoder:(NSCoder *)decoder;
{
if ((self = [super initWithCoder:decoder]) != nil)
{
if ([self respondsToSelector:@selector(ibDidAddToDesignableDocument:)])
[self performSelector:@selector(addBottomBar) withObject:nil afterDelay:0];
}
return self;
}
- (void)awakeFromNib
{
[[self window] setContentBorderThickness:40 forEdge:NSMinYEdge];
// Private method
if ([[self window] respondsToSelector:@selector(setBottomCornerRounded:)])
[[self window] setBottomCornerRounded:NO];
}
- (void)drawRect:(NSRect)aRect
{
if ([self respondsToSelector:@selector(ibDidAddToDesignableDocument:)] && [[self window] contentBorderThicknessForEdge:NSMinYEdge] == 0)
[self performSelector:@selector(addBottomBar) withObject:nil afterDelay:0];
if ([[self window] isSheet] && [[self window] respondsToSelector:@selector(setMovable:)])
[[self window] setMovable:NO];
}
- (NSRect)bounds
{
return NSMakeRect(-10000,-10000,0,0);
}
@end