forked from glebd/bwtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BWAddSmallBottomBar.m
45 lines (37 loc) · 1.07 KB
/
BWAddSmallBottomBar.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
//
// BWAddSmallBottomBar.m
// BWToolkit
//
// Created by Brandon Walkin (www.brandonwalkin.com)
// All code is provided under the New BSD license.
//
#import "BWAddSmallBottomBar.h"
#import "NSWindow-NSTimeMachineSupport.h"
@implementation BWAddSmallBottomBar
- (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:24 forEdge:NSMinYEdge];
}
- (void)drawRect:(NSRect)aRect
{
if ([self respondsToSelector:@selector(ibDidAddToDesignableDocument:)] && [[self window] contentBorderThicknessForEdge:NSMinYEdge] == 0)
[self performSelector:@selector(addBottomBar) withObject:nil afterDelay:0];
#ifndef APPSTORE
if ([[self window] isSheet] && [[self window] respondsToSelector:@selector(setMovable:)])
[[self window] setMovable:NO];
#endif
}
- (NSRect)bounds
{
return NSMakeRect(-10000,-10000,0,0);
}
@end