1 //
2 //  PXBackground.h
3 //  Pixen-XCode
4 //
5 //  Created by Joe Osborn on Mon Oct 27 2003.
6 //  Copyright (c) 2003 Open Sword Group. All rights reserved.
7 //
8 
9 #import <AppKit/AppKit.h>
10 
11 
12 @interface PXBackground : NSObject <NSCoding, NSCopying> {
13     IBOutlet NSView * configurator;
14     id name;
15 }
16 - defaultName;
17 - (NSString *)name;
18 - (void)setName:aName;
19 - (void)setConfiguratorEnabled:(BOOL)enabled;
20 - (NSView *)configurator;
21 - (NSString *)nibName;
22 - (void)changed;
23 - (void)drawRect:(NSRect)rect withinRect:(NSRect)wholeRect;
24 - (void)drawRect:(NSRect)rect withinRect:(NSRect)wholeRect withTransform:aTransform onCanvas:aCanvas;
25 @end
26