mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-01-12 22:27:07 +08:00
21 lines
541 B
Objective-C
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
|