aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleHTMLOutputController.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-11-22 19:41:01 +0000
committerBibiko <bibiko@eva.mpg.de>2010-11-22 19:41:01 +0000
commit5a26675cdc8f6f93162d6753f03508a57ff3112f (patch)
tree2d4240c8d389b9c6adddb7bff5b2dc22914114e5 /Source/SPBundleHTMLOutputController.h
parent6e3ce5d93bfab8ea0c83b2757144cd805f2388b2 (diff)
downloadsequelpro-5a26675cdc8f6f93162d6753f03508a57ff3112f.tar.gz
sequelpro-5a26675cdc8f6f93162d6753f03508a57ff3112f.tar.bz2
sequelpro-5a26675cdc8f6f93162d6753f03508a57ff3112f.zip
• Bundle Editor
- added output action "Show as HTML" • Bundle HTML output - finished implementation - added print support (eg for printing reports) - added text size resizing - added link support - added new window support
Diffstat (limited to 'Source/SPBundleHTMLOutputController.h')
-rw-r--r--Source/SPBundleHTMLOutputController.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/SPBundleHTMLOutputController.h b/Source/SPBundleHTMLOutputController.h
index 9965aec9..1ac550a7 100644
--- a/Source/SPBundleHTMLOutputController.h
+++ b/Source/SPBundleHTMLOutputController.h
@@ -29,10 +29,18 @@
IBOutlet WebView *webView;
- WebPreferences *webPreferences;
+ NSString *docTitle;
+ NSString *initHTMLSourceString;
+ WebPreferences *webPreferences;
}
+@property(readwrite,retain) NSString *docTitle;
+@property(readwrite,retain) NSString *initHTMLSourceString;
+
+- (IBAction)printDocument:(id)sender;
+
- (void)displayHTMLContent:(NSString *)content withOptions:(NSDictionary *)displayOptions;
+- (void)displayURLString:(NSString *)url withOptions:(NSDictionary *)displayOptions;
@end