summaryrefslogtreecommitdiff
path: root/cocoa/BrowserViewController.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-25 17:16:17 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-25 17:16:17 +0000
commit67c9970e544f987fc275c7a5eac67a9123e94868 (patch)
treecbd78a08a266fb7b82a4c31d33de04793084a82a /cocoa/BrowserViewController.h
parentcca607fbe85ae6b6ad517a08eee80ac6a6e83c50 (diff)
downloadnetsurf-67c9970e544f987fc275c7a5eac67a9123e94868.tar.gz
netsurf-67c9970e544f987fc275c7a5eac67a9123e94868.tar.bz2
Implemented favicons. Doesn't work for .ICO files
svn path=/trunk/netsurf/; revision=11485
Diffstat (limited to 'cocoa/BrowserViewController.h')
-rw-r--r--cocoa/BrowserViewController.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cocoa/BrowserViewController.h b/cocoa/BrowserViewController.h
index fc83054a4..020e49e25 100644
--- a/cocoa/BrowserViewController.h
+++ b/cocoa/BrowserViewController.h
@@ -31,6 +31,7 @@ struct browser_window;
NSString *title;
NSString *status;
BOOL isProcessing;
+ NSImage *favicon;
}
@property (readwrite, assign, nonatomic) struct browser_window *browser;
@@ -40,6 +41,7 @@ struct browser_window;
@property (readwrite, copy, nonatomic) NSString *title;
@property (readwrite, copy, nonatomic) NSString *status;
@property (readwrite, assign, nonatomic) BOOL isProcessing;
+@property (readwrite, copy, nonatomic) NSImage *favicon;
- initWithBrowser: (struct browser_window *) bw;