Simple RGB LED controller for Mac OS X
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AppDelegate.h 641B

123456789101112131415161718192021222324252627
  1. //
  2. // AppDelegate.h
  3. // CaseLights
  4. //
  5. // Created by Thomas Buck on 21.12.15.
  6. // Copyright © 2015 xythobuz. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class Serial;
  10. @interface AppDelegate : NSObject <NSApplicationDelegate>
  11. @property (weak) IBOutlet NSMenu *statusMenu;
  12. @property (weak) IBOutlet NSApplication *application;
  13. @property (weak) IBOutlet NSMenu *menuColors;
  14. @property (weak) IBOutlet NSMenu *menuAnimations;
  15. @property (weak) IBOutlet NSMenu *menuVisualizations;
  16. @property (weak) IBOutlet NSMenu *menuPorts;
  17. @property (weak) IBOutlet NSMenuItem *buttonOff;
  18. @property (weak) IBOutlet NSMenuItem *buttonLights;
  19. @end