XCDeviceEvent.h 880 B

123456789101112131415161718192021222324252627
  1. //
  2. // Generated by class-dump 3.5 (64 bit).
  3. //
  4. // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
  5. //
  6. @interface XCDeviceEvent : NSObject <NSSecureCoding>
  7. {
  8. unsigned int _eventPage;
  9. unsigned int _usage;
  10. double _duration;
  11. unsigned long long _type;
  12. double _rotation;
  13. }
  14. @property unsigned long long type; // @synthesize type=_type;
  15. @property double rotation; // @synthesize rotation=_rotation;
  16. @property double duration; // @synthesize duration=_duration;
  17. @property unsigned int usage; // @synthesize usage=_usage;
  18. @property unsigned int eventPage; // @synthesize eventPage=_eventPage;
  19. @property(readonly) BOOL isButtonHoldEvent;
  20. + (id)deviceEventForDigitalCrownRotation:(double)arg1 velocity:(double)arg2;
  21. + (id)deviceEventWithPage:(unsigned int)arg1 usage:(unsigned int)arg2 duration:(double)arg3;
  22. - (void)dispatch;
  23. @end