- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMCCWebScriptWindowController.h
More file actions
Latest commit
33 lines (24 loc) · 785 Bytes
/
Copy pathMCCWebScriptWindowController.h
File metadata and controls
33 lines (24 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// MCCWebScriptWindowController.h
// MailCommon
//
// Created by smorr on 2013-09-24.
// Copyright (c) 2013 Indev Software. All rights reserved.
//
#import<Cocoa/Cocoa.h>
#import<WebKit/WebKit.h>
#include"MCCCommonHeader.h"
@classMCC_PREFIXED_NAME(WebScriptPageController);
@interfaceMCC_PREFIXED_NAME(WebScriptWindowController) : NSWindowController
#ifdef MAC_OS_X_VERSION_10_11
<WebUIDelegate, WebResourceLoadDelegate, WebFrameLoadDelegate>
#endif
@property (retain) MCC_PREFIXED_NAME(WebScriptPageController) *pageController;
- (void)showWindowAndLoadURL:(NSURL*)url;
- (void)openURL:(NSString*)urlString;
- (void)log:(id)logString;
- (void)showEmbeddedPage:(NSString *)pageName;
- (void)closeWindow;
- (NSString *)nibName;
+ (instancetype)sharedInstance;
@end