mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-01 05:18:38 +09:00
84 lines
2.1 KiB
Python
84 lines
2.1 KiB
Python
# copyright 2008-2009 WebDriver committers
|
|
# Copyright 2008-2009 Google Inc.
|
|
#
|
|
# Licensed under the Apache License Version 2.0 = uthe "License")
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http //www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing software
|
|
# distributed under the License is distributed on an "AS IS" BASIS
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
class Keys(object):
|
|
|
|
NULL = u'\ue000'
|
|
CANCEL = u'\ue001' # ^break
|
|
HELP = u'\ue002'
|
|
BACK_SPACE = u'\ue003'
|
|
TAB = u'\ue004'
|
|
CLEAR = u'\ue005'
|
|
RETURN = u'\ue006'
|
|
ENTER = u'\ue007'
|
|
SHIFT = u'\ue008'
|
|
LEFT_SHIFT = u'\ue008' # alias
|
|
CONTROL = u'\ue009'
|
|
LEFT_CONTROL = u'\ue009' # alias
|
|
ALT = u'\ue00a'
|
|
LEFT_ALT = u'\ue00a' # alias
|
|
PAUSE = u'\ue00b'
|
|
ESCAPE = u'\ue00c'
|
|
SPACE = u'\ue00d'
|
|
PAGE_UP = u'\ue00e'
|
|
PAGE_DOWN = u'\ue00f'
|
|
END = u'\ue010'
|
|
HOME = u'\ue011'
|
|
LEFT = u'\ue012'
|
|
ARROW_LEFT = u'\ue012' # alias
|
|
UP = u'\ue013'
|
|
ARROW_UP = u'\ue013' # alias
|
|
RIGHT = u'\ue014'
|
|
ARROW_RIGHT = u'\ue014' # alias
|
|
DOWN = u'\ue015'
|
|
ARROW_DOWN = u'\ue015' # alias
|
|
INSERT = u'\ue016'
|
|
DELETE = u'\ue017'
|
|
SEMICOLON = u'\ue018'
|
|
EQUALS = u'\ue019'
|
|
|
|
NUMPAD0 = u'\ue01a' # numbe pad keys
|
|
NUMPAD1 = u'\ue01b'
|
|
NUMPAD2 = u'\ue01c'
|
|
NUMPAD3 = u'\ue01d'
|
|
NUMPAD4 = u'\ue01e'
|
|
NUMPAD5 = u'\ue01f'
|
|
NUMPAD6 = u'\ue020'
|
|
NUMPAD7 = u'\ue021'
|
|
NUMPAD8 = u'\ue022'
|
|
NUMPAD9 = u'\ue023'
|
|
MULTIPLY = u'\ue024'
|
|
ADD = u'\ue025'
|
|
SEPARATOR = u'\ue026'
|
|
SUBTRACT = u'\ue027'
|
|
DECIMAL = u'\ue028'
|
|
DIVIDE = u'\ue029'
|
|
|
|
F1 = u'\ue031' # function keys
|
|
F2 = u'\ue032'
|
|
F3 = u'\ue033'
|
|
F4 = u'\ue034'
|
|
F5 = u'\ue035'
|
|
F6 = u'\ue036'
|
|
F7 = u'\ue037'
|
|
F8 = u'\ue038'
|
|
F9 = u'\ue039'
|
|
F10 = u'\ue03a'
|
|
F11 = u'\ue03b'
|
|
F12 = u'\ue03c'
|
|
|
|
META = u'\ue03d'
|
|
COMMAND = u'\ue03d'
|