Notice.h 512 B

1234567891011121314151617181920212223242526
  1. //
  2. // Notice.h
  3. // MacGap
  4. //
  5. // Created by Christian Sullivan on 7/26/12.
  6. // Copyright (c) 2012 Twitter. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WindowController.h"
  10. #define APP_NOTICE_NOTIFICATION @"Notice"
  11. @interface Notice : NSObject <NSUserNotificationCenterDelegate> {
  12. }
  13. @property (nonatomic, retain) WebView *webView;
  14. - (id) initWithWebView:(WebView *)view;
  15. - (void) notify:(NSDictionary*)message;
  16. - (void) close:(NSString*)notificationId;
  17. + (BOOL) available;
  18. @end