mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-06-17 08:29:41 +08:00
25 lines
614 B
Objective-C
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
|