This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/mac-ui-macgap1-wrapper/MacGap/Classes/ContentView.h

16 lines
304 B
Objective-C

#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@class WebViewDelegate;
@interface ContentView : NSView {
IBOutlet WebView* webView;
WebViewDelegate* delegate;
}
@property (retain) WebView* webView;
@property (retain) WebViewDelegate* delegate;
@property (strong) IBOutlet NSMenu *mainMenu;
@end