Mac OS X gamepad emulator for serial RC transmitters
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.

MainWindow.h 694B

12345678910111213141516171819202122232425
  1. //
  2. // MainWindow.h
  3. // SerialGamepad
  4. //
  5. // Created by Thomas Buck on 14.12.15.
  6. // Copyright © 2015 xythobuz. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface MainWindow : NSWindow
  10. @property (weak) IBOutlet NSPopUpButton *portList;
  11. @property (weak) IBOutlet NSButton *connectButton;
  12. @property (weak) IBOutlet NSButton *createButton;
  13. @property (weak) IBOutlet NSLevelIndicator *level1;
  14. @property (weak) IBOutlet NSLevelIndicator *level2;
  15. @property (weak) IBOutlet NSLevelIndicator *level3;
  16. @property (weak) IBOutlet NSLevelIndicator *level4;
  17. @property (weak) IBOutlet NSLevelIndicator *level5;
  18. @property (weak) IBOutlet NSLevelIndicator *level6;
  19. - (void)populatePortList;
  20. @end