Files
quark-shell-mac/quark-shell/QSHWebViewDelegate.h
LIU Dongyuan / 柳东原 ceeb182317 Fix some warnings
2015-09-20 22:54:10 -07:00

21 lines
541 B
Objective-C

//
// QSHWebViewDelegate.h
// quark-shell
//
// Created by Xhacker Liu on 3/31/14.
// Copyright (c) 2014 Xhacker. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "QSHStatusItemView.h"
#import "QSHAppDelegate.h"
@interface QSHWebViewDelegate : NSObject <WebUIDelegate, WebFrameLoadDelegate>
@property (nonatomic, weak) QSHAppDelegate *appDelegate;
@property (nonatomic, weak) NSStatusItem *statusItem;
@property (nonatomic, weak) QSHStatusItemView *statusItemView;
@property (nonatomic, weak) WebView *webView;
@end