5 // Created by Sean Patrick O'Brien on 9/15/06.
6 // Copyright 2006 Sean Patrick O'Brien. All rights reserved.
9 #import <Cocoa/Cocoa.h>
11 #import "NSGrayFrame.h"
15 @interface NFIFrame
: NSGrayFrame
{
16 float mTitleBarHeight
;
17 float mBottomBarHeight
;
25 + (NSBezierPath
*)_clippingPathForFrame
:(NSRect
)frame
;
26 + (float)cornerRadius
;
28 - (void)_drawTitleBar
:(NSRect
)rect
;
29 - (void)_drawMidBar
:(NSRect
)rect
;
30 - (void)_drawBottomBar
:(NSRect
)rect
;
31 - (void)_drawTitle
:(NSRect
)rect
;
33 - (id
)backgroundColor
;
34 - (id
)gradientStartColor
;
35 - (id
)gradientEndColor
;
36 - (id
)gradient2StartColor
;
37 - (id
)gradient2EndColor
;
39 - (id
)bottomEdgeColor
;
40 - (id
)topWindowEdgeColor
;
41 - (id
)bottomWindowEdgeColor
;
44 - (float)titleBarHeight
;
45 - (void)setTitleBarHeight
:(float)height
;
46 - (float)bottomBarHeight
;
47 - (void)setBottomBarHeight
:(float)height
;
48 - (float)midBarHeight
;
49 - (float)midBarOriginY
;
50 - (void)setMidBarHeight
:(float)height origin
:(float)origin
;