Simple RGB LED controller for Mac OS X
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppDelegate.h 980B

1234567891011121314151617181920212223242526272829303132333435
  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 NSMenuItem *menuItemDisplays;
  17. @property (weak) IBOutlet NSMenu *menuDisplays;
  18. @property (weak) IBOutlet NSMenu *menuPorts;
  19. @property (weak) IBOutlet NSMenuItem *buttonOff;
  20. @property (weak) IBOutlet NSMenuItem *brightnessItem;
  21. @property (weak) IBOutlet NSSlider *brightnessSlider;
  22. @property (weak) IBOutlet NSMenuItem *brightnessLabel;
  23. @property (weak) IBOutlet NSMenuItem *buttonLights;
  24. - (void)clearDisplayUI;
  25. - (void)updateDisplayUI:(NSArray *)displayIDs;
  26. @end