mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Initial commit
This commit is contained in:
17
Frameworks/HTMLOutput/src/HTMLOutput.h
Normal file
17
Frameworks/HTMLOutput/src/HTMLOutput.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#include <oak/misc.h>
|
||||
|
||||
extern NSString* const kCommandRunnerURLScheme;
|
||||
|
||||
@interface OakHTMLOutputView : NSView
|
||||
- (void)setEnvironment:(std::map<std::string, std::string> const&)anEnvironment;
|
||||
- (void)loadRequest:(NSURLRequest*)aRequest autoScrolls:(BOOL)flag;
|
||||
- (void)stopLoading;
|
||||
|
||||
@property (nonatomic, readonly) BOOL runningCommand;
|
||||
|
||||
// Read-only access to the webview is given to allow reading page title, etc.
|
||||
@property (nonatomic, readonly) WebView* webView;
|
||||
@end
|
||||
|
||||
namespace command { struct runner_t; typedef std::tr1::shared_ptr<runner_t> runner_ptr; }
|
||||
PUBLIC NSURLRequest* URLRequestForCommandRunner (command::runner_ptr aRunner);
|
||||
Reference in New Issue
Block a user