mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-21 05:53:09 +00:00
52 lines
1.2 KiB
Objective-C
52 lines
1.2 KiB
Objective-C
//
|
|
// AppDelegate.h
|
|
// ZeroTier One
|
|
//
|
|
// Created by Grant Limberg on 8/7/16.
|
|
// Copyright © 2016 ZeroTier, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class NetworkMonitor;
|
|
@class Network;
|
|
@class NodeStatus;
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate, NSMenuDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet NSWindow *window;
|
|
|
|
@property (nonatomic) NSStatusItem *statusItem;
|
|
|
|
@property (nonatomic) NSPopover *networkListPopover;
|
|
@property (nonatomic) NSPopover *joinNetworkPopover;
|
|
@property (nonatomic) NSPopover *preferencesPopover;
|
|
@property (nonatomic) NSPopover *aboutPopover;
|
|
|
|
@property (nonatomic) id transientMonitor;
|
|
|
|
@property (nonatomic) NetworkMonitor *monitor;
|
|
|
|
@property (nonatomic) NSMutableArray<Network*> *networks;
|
|
|
|
@property (nonatomic) NodeStatus *status;
|
|
|
|
@property (nonatomic) NSPasteboard *pasteboard;
|
|
|
|
- (void)buildMenu;
|
|
|
|
- (void)onNetworkListUpdated:(NSNotification*)note;
|
|
- (void)onNodeStatusUpdated:(NSNotification*)note;
|
|
|
|
- (void)showNetworks;
|
|
- (void)joinNetwork;
|
|
- (void)showPreferences;
|
|
- (void)showAbout;
|
|
- (void)quit;
|
|
- (void)toggleNetwork:(NSMenuItem*)sender;
|
|
- (void)copyNodeID;
|
|
- (void)menuWillOpen:(NSMenu*)menu;
|
|
- (void)menuDidClose:(NSMenu*)menu;
|
|
|
|
@end
|