summaryrefslogtreecommitdiff
path: root/cocoa/DownloadWindowController.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-14 12:46:06 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-14 12:46:06 +0000
commitecc314c694d3fa735855d10d57770ba447332816 (patch)
tree4db9b7f55005b4196c45316981d60a7b31af0bb2 /cocoa/DownloadWindowController.h
parent633f294ce29be6b40c2c4cb865120d1771c81c67 (diff)
downloadnetsurf-ecc314c694d3fa735855d10d57770ba447332816.tar.gz
netsurf-ecc314c694d3fa735855d10d57770ba447332816.tar.bz2
Implemented download window
svn path=/trunk/netsurf/; revision=11317
Diffstat (limited to 'cocoa/DownloadWindowController.h')
-rw-r--r--cocoa/DownloadWindowController.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/cocoa/DownloadWindowController.h b/cocoa/DownloadWindowController.h
new file mode 100644
index 000000000..0115c4597
--- /dev/null
+++ b/cocoa/DownloadWindowController.h
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2011 Sven Weidauer <sven.weidauer@gmail.com>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface DownloadWindowController : NSWindowController {
+ struct download_context *context;
+ unsigned long totalSize;
+ unsigned long receivedSize;
+
+ NSURL *url;
+ NSString *mimeType;
+ NSURL *saveURL;
+ NSFileHandle *outputFile;
+ NSMutableData *savedData;
+ NSDate *startDate;
+}
+
+@property (readwrite, copy, nonatomic) NSURL *URL;
+@property (readwrite, copy, nonatomic) NSString *MIMEType;
+@property (readwrite, assign, nonatomic) unsigned long totalSize;
+@property (readwrite, copy, nonatomic) NSURL *saveURL;
+@property (readwrite, assign, nonatomic) unsigned long receivedSize;
+
+@property (readonly, nonatomic) NSString *fileName;
+@property (readonly, nonatomic) NSImage *icon;
+@property (readonly, nonatomic) NSString *statusText;
+
+- initWithContext: (struct download_context *)ctx;
+
+- (void) abort;
+
+@end