1 //
2 //  PXGradientBuilderController.h
3 //  Pixen-XCode
4 //
5 //  Created by Ian Henderson on 26.08.04.
6 //  Copyright 2004 Open Sword Group. All rights reserved.
7 //
8 #import <AppKit/AppKit.h>
9 
10 @class PXPaletteSwitcher;
11 
12 @interface PXGradientBuilderController : NSWindowController {
13 	IBOutlet NSTextField *nameField;
14 	IBOutlet NSColorWell *startColorWell;
15 	IBOutlet NSColorWell *endColorWell;
16 	IBOutlet NSTextField *colorsField;
17 
18 	PXPaletteSwitcher *switcher;
19 }
20 
21 - (void)beginSheetInWindow:(NSWindow *)window;
22 
23 - initWithPaletteSwitcher:(PXPaletteSwitcher *)aSwitcher;
24 
25 - (IBAction)create:sender;
26 - (IBAction)cancel:sender;
27 
28 @end
29