mirror of
https://github.com/aidygus/LinVAM.git
synced 2024-11-14 13:18:06 +11:00
21 lines
422 B
Python
21 lines
422 B
Python
# -*- coding: utf-8 -*-
|
|
from collections import namedtuple
|
|
|
|
LEFT = 'left'
|
|
RIGHT = 'right'
|
|
MIDDLE = 'middle'
|
|
WHEEL = 'wheel'
|
|
X = 'x'
|
|
X2 = 'x2'
|
|
|
|
UP = 'up'
|
|
DOWN = 'down'
|
|
DOUBLE = 'double'
|
|
VERTICAL = 'vertical'
|
|
HORIZONTAL = 'horizontal'
|
|
|
|
|
|
ButtonEvent = namedtuple('ButtonEvent', ['event_type', 'button', 'time'])
|
|
WheelEvent = namedtuple('WheelEvent', ['delta', 'time'])
|
|
MoveEvent = namedtuple('MoveEvent', ['x', 'y', 'time'])
|