summaryrefslogtreecommitdiffstats
path: root/Liaison/CopyController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Liaison/CopyController.h')
-rw-r--r--Liaison/CopyController.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/Liaison/CopyController.h b/Liaison/CopyController.h
new file mode 100644
index 0000000..e12a6e0
--- /dev/null
+++ b/Liaison/CopyController.h
@@ -0,0 +1,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