Recreate Finnish.lproj/MainMenu.nib.
[MacTF.git] / iLifeControls / NFIWindow.m
blobdff53ffe1d37684c5e5be84ec57d3c6a7cf5a15f
1 //
2 //  NFIWindow.m
3 //  iLife Window
4 //
5 //  Created by Sean Patrick O'Brien on 9/15/06.
6 //  Copyright 2006 Sean Patrick O'Brien. All rights reserved.
7 //
9 #import "NFIWindow.h"
10 #import "NFIFrame.h"
12 @implementation NFIWindow
14 + (Class)frameViewClassForStyleMask:(unsigned int)styleMask
16         return [NFIFrame class];
19 - (float)titleBarHeight
21         return [_borderView titleBarHeight];
24 - (void)setTitleBarHeight:(float)height
26         [_borderView setTitleBarHeight: height];
29 - (float)bottomBarHeight
31         return [_borderView bottomBarHeight];
34 - (void)setBottomBarHeight:(float)height
36         [_borderView setBottomBarHeight: height];
39 - (float)midBarHeight
41         return [_borderView midBarHeight];
44 - (float)midBarOriginY
46         return [_borderView midBarOriginY];;
49 - (void)setMidBarHeight:(float)height origin:(float)origin
51         [_borderView setMidBarHeight: height origin:origin];
54 @end