1 //
2 //  PXDuotoneBackground.h
3 //  Pixen-XCode
4 //
5 //  Created by Joe Osborn on Tue Oct 28 2003.
6 //  Copyright (c) 2003 Open Sword Group. All rights reserved.
7 //
8 
9 #import "PXMonotoneBackground.h"
10 
11 @interface PXDuotoneBackground : PXMonotoneBackground {
12     NSColor * backColor;
13     IBOutlet NSColorWell * backWell;
14 }
15 
16 - (IBAction)configuratorBackColorChanged:sender;
17 - (void)setBackColor:aColor;
18 
19 @end
20