13 lines
183 B
C
13 lines
183 B
C
|
/* ImageBackgroundView */
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface ImageBackgroundView : NSView
|
||
|
{
|
||
|
NSColor * fBackgroundColor;
|
||
|
}
|
||
|
|
||
|
- (void) setBackgroundImage: (NSImage *) image;
|
||
|
|
||
|
@end
|