1 //
2 //  PXPencilToolPropertiesView.h
3 //  Pixen-XCode
4 //
5 //  Created by Ian Henderson on Wed Mar 17 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import "PXToolPropertiesView.h"
10 
11 @class PXPattern;
12 
13 @interface PXPencilToolPropertiesView : PXToolPropertiesView {
14     IBOutlet NSTextField *lineThickness;
15     IBOutlet NSButton *modifyButton;
16     IBOutlet NSButton *clearButton;
17 
18 	BOOL waitingForPatternEditing;
19 	PXPattern *drawingPattern;
20 }
21 
22 - (NSSize)patternSize;
23 - (int)lineThickness;
24 - (NSArray *)drawingPoints;
25 
26 - (IBAction)modifyPattern:sender;
27 - (IBAction)clearPattern:sender;
28 
29 @end
30