Initial commit

This commit is contained in:
Allan Odgaard
2012-08-09 16:25:56 +02:00
commit 9894969e67
1103 changed files with 215580 additions and 0 deletions

View 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);