1 //
2 //  PXImageBackground.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 PXImageBackground : PXMonotoneBackground {
12     id image;
13     IBOutlet id imageNameField, browseButton;
14 }
15 - (IBAction)configuratorBrowseForImageButtonClicked:sender;
16 - (void)setImage:anImage;
17 
18 @end
19