1 //
2 //  PXMonotoneBackground.h
3 //  Pixen-XCode
4 //
5 //  Created by Joe Osborn on Sun Oct 26 2003.
6 //  Copyright (c) 2003 Open Sword Group. All rights reserved.
7 //
8 
9 #import <AppKit/AppKit.h>
10 #import "PXBackground.h"
11 
12 @interface PXMonotoneBackground : PXBackground {
13     NSColor * color;
14     IBOutlet NSColorWell * colorWell;
15 }
16 - (IBAction)configuratorColorChanged:sender;
17 - (void)setColor:aColor;
18 @end
19