luxlabs header browser preview


@class SBPressSequenceValidator, SBPressTuple, NSMutableArray, BSAbsoluteMachTimer;
@protocol SBPressSequenceRecognizerDelegate;

@interface SBPressSequenceRecognizer : NSObject {
    double _lastPressDownEvent;
    double _lastPressUpEvent;
    BSAbsoluteMachTimer *_watchdogTimer;
    SBPressTuple *_currentPressTuple;
    NSMutableArray *_currentSequence;
}

@property (weak, nonatomic) id<SBPressSequenceRecognizerDelegate> delegate;
@property (readonly, nonatomic) SBPressSequenceValidator *validator;
@property (readonly, nonatomic) unsigned long long numberOfPresses;

- (id)init;
- (void)dealloc;
- (void)_reset;
- (void)_resetWatchdogIfNecessary;
- (void).cxx_destruct;
- (void)_complete;
- (void)_resetAndNotify;
- (double)_watchdogTimeIntervalFromDelay:(double)a0;
- (void)registerPressDownWithTimestamp:(double)a0;
- (void)_handlePressDownWithTimestamp:(double)a0;
- (void)_handlePressUpWithTimestamp:(double)a0;
- (void)_resetAfterDelay:(double)a0;
- (id)initWithValidator:(id)a0 numberOfPresses:(unsigned long long)a1;
- (void)registerPressUpWithTimestamp:(double)a0;
- (void)resetWithNewValidator:(id)a0 numberOfPresses:(unsigned long long)a1;

@end