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/Commands/App.h

22 lines
382 B
C
Raw Normal View History

#import <Foundation/Foundation.h>
#import "WindowController.h"
@interface App : NSObject {
}
@property (nonatomic, retain) WebView *webView;
- (id) initWithWebView:(WebView *)view;
- (void) terminate;
- (void) activate;
- (void) hide;
- (void) unhide;
- (void) beep;
- (void) bounce;
- (void) setCustomUserAgent:(NSString *)userAgentString;
- (NSNumber*) systemIdleTime;
@end