mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
12 lines
183 B
Objective-C
12 lines
183 B
Objective-C
/* ImageBackgroundView */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface ImageBackgroundView : NSView
|
|
{
|
|
NSColor * fBackgroundColor;
|
|
}
|
|
|
|
- (void) setBackgroundImage: (NSImage *) image;
|
|
|
|
@end
|