mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 21:57:54 -05:00
15 lines
340 B
Objective-C
15 lines
340 B
Objective-C
#import <oak/debug.h>
|
|
#import "browser/HOBrowserView.h"
|
|
|
|
@class HOAutoScroll;
|
|
|
|
@interface OakHTMLOutputView : HOBrowserView
|
|
{
|
|
HOAutoScroll* autoScrollHelper;
|
|
std::map<std::string, std::string> environment;
|
|
BOOL runningCommand;
|
|
}
|
|
@property (nonatomic, readonly) BOOL runningCommand;
|
|
@property (nonatomic, readonly) WebView* webView;
|
|
@end
|