Files
quark-shell-mac/quark-shell/QSHWebViewWindowController.h

25 lines
614 B
Objective-C

//
// QSHNewWindowController.h
// quark-shell
//
// Created by Xhacker Liu on 7/2/14.
// Copyright (c) 2014 Xhacker. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "QSHWebView.h"
#import "QSHWebViewDelegate.h"
@interface QSHWebViewWindowController : NSWindowController
@property (nonatomic, strong) QSHWebView *webView;
@property (nonatomic) NSString *windowId;
- (id)initWithURLString:(NSString *)URLString
width:(CGFloat)width
height:(CGFloat)height
webDelegate:(QSHWebViewDelegate *)webDelegate
windowId:(NSString *)windowId;
@end