Mac OS X gamepad emulator for serial RC transmitters
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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