1 //
2 //  PXRectangleToolPropertiesView.h
3 //  Pixen-XCode
4 //
5 //  Created by Andy Matuschak on Sat Mar 13 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import <AppKit/AppKit.h>
10 #import "PXToolPropertiesView.h"
11 
12 
13 @interface PXRectangleToolPropertiesView : PXToolPropertiesView
14 {
15 	IBOutlet id fillColor;
16 	IBOutlet id fillCheckbox;
17 	IBOutlet id fillStyle;
18 	IBOutlet id borderWidth;
19 }
20 
21 - fillColor;
22 - (BOOL)shouldFill;
23 - (BOOL)shouldUseMainColorForFill;
24 - (int)borderWidth;
25 
26 @end
27