2019-09-05 15:20:52 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
2019-09-05 16:34:03 +00:00
|
|
|
#include "bridge.h"
|
|
|
|
|
2019-09-13 12:35:46 +00:00
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate> {
|
|
|
|
@public NSStatusItem *myStatusItem;
|
|
|
|
}
|
2019-09-05 15:20:52 +00:00
|
|
|
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
|
2019-09-13 12:35:46 +00:00
|
|
|
- (IBAction) statusIconClick: (id) sender;
|
|
|
|
- (IBAction) contextMenuClick: (id) sender;
|
2019-09-05 15:20:52 +00:00
|
|
|
|
|
|
|
@end
|