89# used in libinput. The values may be adjusted, but not the constant names.
90MOUSEBUTTONLIST = None# None for all mouse buttons; list of numbers for buttons of choice (e.g. [1,3] for buttons 1 and 3)
91MOUSETIMEOUT = None# None for no timeout, or a value in milliseconds
92KEYLIST = None# None for all keys; list of keynames for keys of choice (e.g. ['space','9',':'] for space, 9 and ; keys)
93KEYTIMEOUT = 1 # None for no timeout, or a value in milliseconds
94JOYBUTTONLIST = None# None for all joystick buttons; list of button numbers (start counting at 0) for buttons of choice (e.g. [0,3] for buttons 0 and 3 - may be reffered to as 1 and 4 in other programs)
95JOYTIMEOUT = None# None for no timeout, or a value in milliseconds
96
97# EYETRACKER
98# general
99TRACKERTYPE = 'tobii'# either 'smi', 'eyelink' or 'dummy' (NB: if DUMMYMODE is True, trackertype will be set to dummy automatically)
119CURSORSIZE = 20 # pixels, either an integer value or a tuple for width and height (w,h)
120CURSORCOLOUR = 'pink'# colour name (e.g. 'red'), a tuple RGB-triplet (e.g. (255, 255, 255) for white or (0,0,0) for black), or a RGBA-value (e.g. (255,0,0,255) for red)
121CURSORFILL = True# True for filled cursor, False for non filled cursor
122CURSORPENWIDTH = 3 # cursor edge width in pixels (only if cursor is not filled)