Advertisement
ichitaso

HNDEventManager.h

Sep 30th, 2012
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  *     Generated by class-dump 3.3.4 (64 bit).
  3.  *
  4.  *     class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
  5.  */
  6.  
  7. #import "NSObject.h"
  8.  
  9. #import "HNDEventMatchedRealEventProtocol-Protocol.h"
  10.  
  11. @class NSLock, NSMutableArray, SCRCThread;
  12.  
  13. @interface HNDEventManager : NSObject <HNDEventMatchedRealEventProtocol>
  14. {
  15.     struct __CFMachPort *_systemPort;
  16.     SCRCThread *_eventDispatchThread;
  17.     NSMutableArray *_eventsToDispatch;
  18.     NSMutableArray *_eventsToMatch;
  19.     struct __CFRunLoopSource *_source;
  20.     struct __CFRunLoop *_runLoop;
  21.     NSLock *_eventLock;
  22.     NSLock *_eventMatchLock;
  23.     BOOL _isCapturingEvents;
  24. }
  25.  
  26. + (id)sharedManager;
  27. + (void)initialize;
  28. - (void)performHardwareButton:(int)arg1 state:(int)arg2;
  29. - (void)notifyUserEventOccurred;
  30. - (void)performCancel;
  31. - (void)performUpWithFingers:(id)arg1;
  32. - (void)setAllowUpEventsToPassthrough:(BOOL)arg1;
  33. - (void)performMoveWithFingers:(id)arg1;
  34. - (void)performDownWithFingers:(id)arg1;
  35. - (void)openCreateCustomGesture;
  36. - (BOOL)orientationLocked;
  37. - (BOOL)sideSwitchUsedForOrientation;
  38. - (void)_sendHandEvent:(int)arg1 location:(id)arg2;
  39. - (void)_sendDeviceOrientationChange:(int)arg1;
  40. - (void)_sendButtonEvent:(int)arg1;
  41. - (void)_sendGSEvent:(CDStruct_cee7353d *)arg1;
  42. - (void)_initializeSystemWideServerPort;
  43. - (void)setOverrideSystemGestures:(BOOL)arg1;
  44. - (void)setCaptureEvents:(BOOL)arg1;
  45. - (void)wakeDeviceFromSleepIfNecessary;
  46. - (void)setMenuVisible:(BOOL)arg1;
  47. - (BOOL)isVoiceControlRunning;
  48. - (float)volumeLevel;
  49. - (void)setNubbitMoving:(BOOL)arg1;
  50. - (void)_initializeASTNotificationCenter;
  51. - (void)keyboardStatusChanged:(id)arg1 userInfo:(id)arg2;
  52. - (void)_initializeClientPort;
  53. - (void)receivedGSEventFromTap:(id)arg1;
  54. - (void)ringerSwitchChanged;
  55. - (void)substationalTransitionOccurred;
  56. - (void)_restartConnectionToSystemServer;
  57. - (unsigned int)_portForPosition:(struct CGPoint)arg1;
  58. - (int)deviceOrientation;
  59. - (void)_startThread;
  60. - (void)_processQueue;
  61. - (BOOL)incomingEventMatchesEvent:(struct CGPoint)arg1;
  62. - (id)init;
  63.  
  64. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement