JoinNetworkViewController.h 838 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // JoinNetworkViewController.h
  3. // ZeroTier One
  4. //
  5. // Created by Grant Limberg on 8/7/16.
  6. // Copyright © 2016 ZeroTier, Inc. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. extern NSString * const JoinedNetworksKey;
  10. @class AppDelegate;
  11. @interface JoinNetworkViewController : NSViewController <NSComboBoxDelegate, NSComboBoxDataSource>
  12. @property (nonatomic, weak) IBOutlet NSComboBox *network;
  13. @property (nonatomic, weak) IBOutlet NSButton *joinButton;
  14. @property (nonatomic, weak) IBOutlet NSButton *allowManagedCheckBox;
  15. @property (nonatomic, weak) IBOutlet NSButton *allowGlobalCheckBox;
  16. @property (nonatomic, weak) IBOutlet NSButton *allowDefaultCheckBox;
  17. @property (nonatomic, weak) IBOutlet AppDelegate *appDelegate;
  18. @property (nonatomic) NSMutableArray<NSString*> *values;
  19. - (IBAction)onJoinClicked:(id)sender;
  20. @end