blob: 52f05f54a6d0f1e7e40fd791b64a0cc83815ed19 [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.
"""A container for constants shared among modules."""
class NOP:
"""A dummpy class to include NOP related constants for device events."""
NOP = 'NOP'
FINGER1_LANDED = '1st Finger Landed'
FINGER1_LIFTED = '1st Finger Lifted'
FINGER2_LANDED = '2nd Finger Landed'
FINGER2_LIFTED = '2nd Finger Lifted'
FINGER3_LANDED = '3rd Finger Landed'
FINGER3_LIFTED = '3rd Finger Lifted'
DEVICE_MOUSE_CLICK = 'Device Mouse Click'
DEVICE_MOUSE_CLICK_PRESS = 'Device Mouse Click Press'
DEVICE_MOUSE_CLICK_RELEASE = 'Device Mouse Click Release'
TWO_FINGER_TOUCH = 'Two Finger Touch'
FINGER_ON = 'Finger On'
FINGER_OFF = 'Finger Off'
ONE_FINGER_ON = 'One Finger On'
TWO_FINGERS_ON = 'Two Fingers On'
THREE_FINGERS_ON = 'Three Fingers On'
FOUR_FINGERS_ON = 'Four Fingers On'
pass