mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 13:47:54 -05:00
15 lines
532 B
Objective-C
15 lines
532 B
Objective-C
#import <HTMLOutput/HTMLOutput.h>
|
|
#import <oak/misc.h>
|
|
|
|
PUBLIC @interface HTMLOutputWindowController : NSObject <NSWindowDelegate>
|
|
@property (nonatomic) NSWindow* window;
|
|
@property (nonatomic) OakHTMLOutputView* htmlOutputView;
|
|
@property (nonatomic) command::runner_ptr commandRunner;
|
|
@property (nonatomic, readonly) BOOL running;
|
|
@property (nonatomic, readonly) BOOL needsNewWebView;
|
|
+ (HTMLOutputWindowController*)HTMLOutputWindowWithRunner:(command::runner_ptr const&)aRunner;
|
|
|
|
- (void)showWindow:(id)sender;
|
|
- (void)close;
|
|
@end
|