blob: e12a6e07786cb085568c584ae9a3044fb1b221ed (
plain)
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
|
/* CopyController */
@class DownloadStatusView;
@interface CopyController : NSObject
{
IBOutlet NSWindow *theWindow;
IBOutlet DownloadStatusView *theTemplate;
IBOutlet NSBox *theContentBox;
IBOutlet NSScrollView *theScrollView;
BOOL theWindowIsShowing;
NSMutableDictionary *theDownloads;
}
- (void)showWindow;
- (void)hideWindow;
- (DownloadStatusView *)statusViewForFileHandle: (LiFileHandle *)aFile;
@property (retain) NSScrollView *theScrollView;
@property (retain) DownloadStatusView *theTemplate;
@property (retain) NSBox *theContentBox;
@property (retain) NSWindow *theWindow;
@property BOOL theWindowIsShowing;
@property (retain) NSMutableDictionary *theDownloads;
@end
|