1 //
2 //  PXCanvas_ApplescriptAdditions.h
3 //  Pixen
4 //
5 //  Created by Ian Henderson on Fri Mar 05 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import "PXCanvas.h"
10 
11 
12 @interface PXCanvas(ApplescriptAdditions)
13 
14 - handleGetColorScriptCommand:command;
15 - handleSetColorScriptCommand:command;
16 
17 - (int)height;
18 - (void)setHeight:(int)height;
19 - (int)width;
20 - (void)setWidth:(int)width;
21 
22 @end
23