mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 13:47:54 -05:00
This replaces the current HTML shown without adding to the history and will preserve scroll position.
15 lines
552 B
Objective-C
15 lines
552 B
Objective-C
#import "browser/HOBrowserView.h"
|
|
#import <oak/misc.h>
|
|
|
|
PUBLIC @interface OakHTMLOutputView : HOBrowserView
|
|
- (void)loadRequest:(NSURLRequest*)aRequest environment:(std::map<std::string, std::string> const&)anEnvironment autoScrolls:(BOOL)flag;
|
|
- (void)stopLoading;
|
|
- (void)loadHTMLString:(NSString*)someHTML;
|
|
|
|
@property (nonatomic, readonly) BOOL runningCommand;
|
|
|
|
// Read-only access to the webview is given to allow reading page title, etc.
|
|
@property (nonatomic, readonly) WebView* webView;
|
|
@property (nonatomic, readonly) BOOL needsNewWebView;
|
|
@end
|