App.h 382 B

123456789101112131415161718192021
  1. #import <Foundation/Foundation.h>
  2. #import "WindowController.h"
  3. @interface App : NSObject {
  4. }
  5. @property (nonatomic, retain) WebView *webView;
  6. - (id) initWithWebView:(WebView *)view;
  7. - (void) terminate;
  8. - (void) activate;
  9. - (void) hide;
  10. - (void) unhide;
  11. - (void) beep;
  12. - (void) bounce;
  13. - (void) setCustomUserAgent:(NSString *)userAgentString;
  14. - (NSNumber*) systemIdleTime;
  15. @end