XCPointerEventPath.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. @class NSArray, NSMutableArray;
  7. @interface XCPointerEventPath : NSObject <NSSecureCoding>
  8. {
  9. NSMutableArray *_pointerEvents;
  10. BOOL _immutable;
  11. unsigned long long _pathType;
  12. unsigned long long _index;
  13. }
  14. @property BOOL immutable; // @synthesize immutable=_immutable;
  15. @property unsigned long long index; // @synthesize index=_index;
  16. @property(readonly) unsigned long long pathType; // @synthesize pathType=_pathType;
  17. @property(readonly) NSArray *pointerEvents;
  18. - (id)firstEventAfterOffset:(double)arg1;
  19. - (id)lastEventBeforeOffset:(double)arg1;
  20. - (void)_addPointerEvent:(id)arg1;
  21. - (void)releaseButton:(unsigned long long)arg1 atOffset:(double)arg2;
  22. - (void)pressButton:(unsigned long long)arg1 atOffset:(double)arg2;
  23. - (void)liftUpAtOffset:(double)arg1;
  24. - (void)moveToPoint:(struct CGPoint)arg1 atOffset:(double)arg2;
  25. - (void)pressDownWithPressure:(double)arg1 atOffset:(double)arg2;
  26. - (void)pressDownAtOffset:(double)arg1;
  27. - (id)initForMouseAtPoint:(struct CGPoint)arg1 offset:(double)arg2;
  28. - (id)initForTouchAtPoint:(CGPoint)arg1 offset:(double)arg2;
  29. // Since Xcode 10.2
  30. - (void)typeKey:(id)arg1 modifiers:(unsigned long long)arg2 atOffset:(double)arg3;
  31. // Since Xcode 12.beta5
  32. - (void)typeText:(id)arg1 atOffset:(double)arg2 typingSpeed:(unsigned long long)arg3 shouldRedact:(_Bool)arg4;
  33. // Since Xcode 10.2
  34. - (id)initForTextInput;
  35. // Since Xcode 10.2
  36. - (void)setModifiers:(unsigned long long)arg1 mergeWithCurrentModifierFlags:(_Bool)arg2 atOffset:(double)arg3;
  37. - (id)init;
  38. @end