XCPointerEvent.h 1.2 KB

123456789101112131415161718192021222324252627282930
  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 XCPointerEvent : NSObject <NSSecureCoding>
  7. {
  8. unsigned long long _eventType;
  9. unsigned long long _buttonType;
  10. double _pressure;
  11. double _offset;
  12. struct CGPoint _coordinate;
  13. }
  14. @property double offset; // @synthesize offset=_offset;
  15. @property double pressure; // @synthesize pressure=_pressure;
  16. @property struct CGPoint coordinate; // @synthesize coordinate=_coordinate;
  17. @property unsigned long long buttonType; // @synthesize buttonType=_buttonType;
  18. @property unsigned long long eventType; // @synthesize eventType=_eventType;
  19. + (CDUnknownBlockType)offsetComparator;
  20. + (id)pointerEventWithType:(unsigned long long)arg1 buttonType:(unsigned long long)arg2 coordinate:(struct CGPoint)arg3 pressure:(double)arg4 offset:(double)arg5;
  21. + (id)pointerEventWithType:(unsigned long long)arg1 buttonType:(unsigned long long)arg2 coordinate:(struct CGPoint)arg3 offset:(double)arg4;
  22. // available since Xcode 10.2
  23. + (id)keyboardEventForKeyCode:(unsigned long long)arg1 keyPhase:(unsigned long long)arg2 modifierFlags:(unsigned long long)arg3 offset:(double)arg4;
  24. - (id)init;
  25. @end