blob: 3224c733ba52bf47af474736ad4388f0708a8e05 [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from fuzzy_check import FuzzyCheck
from validators import *
def Validate(raw, events, gestures):
"""
Very nasty case with 2 palms appearing with one thumb all in the time
frame of 300ms. The user intended to do a left click.
"""
fuzzy = FuzzyCheck()
fuzzy.expected = [
AnythingButValidator(ButtonDownValidator(1)),
ButtonDownValidator(1),
ButtonUpValidator(1),
]
fuzzy.unexpected = [
MotionValidator("<10"),
FlingStopValidator("<10"),
FlingValidator("<10")
]
return fuzzy.Check(gestures)