-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathArchiveDropView.h
More file actions
28 lines (23 loc) · 639 Bytes
/
ArchiveDropView.h
File metadata and controls
28 lines (23 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ArchiveDropView */
//
// Apple Public Source License
// http://www.opensource.apple.com/apsl/
//
// Created by Vitaly Davidenko on 12/10/06.
// Copyright 2006 Vitaly Davidenko.
//
// Updated and refactored by Rob Rohan on 2007-09-18
#import <Cocoa/Cocoa.h>
@interface ArchiveDropView : NSView
{
IBOutlet NSTextView *logOutput;
IBOutlet NSUserDefaultsController *userDefaults;
NSImage *_dropImage;
}
- (void)logError: (NSString*) message;
- (void)logWarning: (NSString*) message;
- (void)logInfo: (NSString*) message;
- (void)logResult: (NSString*) message;
- (void)setImage: (NSImage *)newImage;
- (NSImage *)image;
@end