mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-01-12 22:27:07 +08:00
20 lines
408 B
Objective-C
20 lines
408 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>
|
|
|
|
@interface QSHWebViewWindowController : NSWindowController
|
|
|
|
@property (weak) IBOutlet WebView *webView;
|
|
|
|
- (id)initWithURLString:(NSString *)URLString
|
|
width:(CGFloat)width
|
|
height:(CGFloat)height;
|
|
|
|
@end
|