/usr/lib/python3/dist-packages/Onboard/definitions.py is in onboard 1.2.0-0ubuntu5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | # -*- coding: utf-8 -*-
# Copyright © 2013-2015 marmuta <marmvta@gmail.com>
#
# This file is part of Onboard.
#
# Onboard is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Onboard is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Global definitions.
"""
from __future__ import division, print_function, unicode_literals
from gi.repository import Gdk
class StatusIconProviderEnum:
(
GtkStatusIcon,
AppIndicator,
) = range(2)
class InputEventSourceEnum:
(
GTK,
XINPUT,
) = range(2)
class TouchInputEnum:
(
NONE,
SINGLE,
MULTI,
) = range(3)
class LearningBehavior:
(
NOTHING,
KNOWN_ONLY,
ALL,
) = range(3)
# auto-show repositioning
class RepositionMethodEnum:
(
NONE,
PREVENT_OCCLUSION, # Stay put at the user selected home
# position, only move when really necessary.
REDUCE_POINTER_TRAVEL, # Move closer to the accessible, but try
# to stay out of top level windows.
) = range(3)
# window corners
class Handle:
NORTH_WEST = Gdk.WindowEdge.NORTH_WEST
NORTH = Gdk.WindowEdge.NORTH
NORTH_EAST = Gdk.WindowEdge.NORTH_EAST
WEST = Gdk.WindowEdge.WEST
EAST = Gdk.WindowEdge.EAST
SOUTH_WEST = Gdk.WindowEdge.SOUTH_WEST
SOUTH = Gdk.WindowEdge.SOUTH
SOUTH_EAST = Gdk.WindowEdge.SOUTH_EAST
class MOVE: pass
Handle.EDGES = (Handle.EAST,
Handle.SOUTH,
Handle.WEST,
Handle.NORTH)
Handle.CORNERS = (Handle.SOUTH_EAST,
Handle.SOUTH_WEST,
Handle.NORTH_WEST,
Handle.NORTH_EAST)
Handle.RESIZERS = (Handle.EAST,
Handle.SOUTH_EAST,
Handle.SOUTH,
Handle.SOUTH_WEST,
Handle.WEST,
Handle.NORTH_WEST,
Handle.NORTH,
Handle.NORTH_EAST)
Handle.TOP_RESIZERS = (
Handle.EAST,
Handle.WEST,
Handle.NORTH_WEST,
Handle.NORTH,
Handle.NORTH_EAST)
Handle.BOTTOM_RESIZERS = (
Handle.EAST,
Handle.SOUTH_EAST,
Handle.SOUTH,
Handle.SOUTH_WEST,
Handle.WEST)
Handle.ALL = Handle.RESIZERS + (Handle.MOVE, )
Handle.CURSOR_TYPES = {
Handle.NORTH_WEST : Gdk.CursorType.TOP_LEFT_CORNER,
Handle.NORTH : Gdk.CursorType.TOP_SIDE,
Handle.NORTH_EAST : Gdk.CursorType.TOP_RIGHT_CORNER,
Handle.WEST : Gdk.CursorType.LEFT_SIDE,
Handle.EAST : Gdk.CursorType.RIGHT_SIDE,
Handle.SOUTH_WEST : Gdk.CursorType.BOTTOM_LEFT_CORNER,
Handle.SOUTH : Gdk.CursorType.BOTTOM_SIDE,
Handle.SOUTH_EAST : Gdk.CursorType.BOTTOM_RIGHT_CORNER,
Handle.MOVE : Gdk.CursorType.FLEUR}
Handle.IDS = {
Handle.EAST : "E",
Handle.SOUTH_WEST : "SW",
Handle.SOUTH : "S",
Handle.SOUTH_EAST : "SE",
Handle.WEST : "W",
Handle.NORTH_WEST : "NW",
Handle.NORTH : "N",
Handle.NORTH_EAST : "NE",
Handle.MOVE : "M"}
Handle.RIDS = {
"E" : Handle.EAST,
"SW" : Handle.SOUTH_WEST,
"S" : Handle.SOUTH,
"SE" : Handle.SOUTH_EAST,
"W" : Handle.WEST,
"NW" : Handle.NORTH_WEST,
"N" : Handle.NORTH,
"NE" : Handle.NORTH_EAST,
"M" : Handle.MOVE}
class DockingEdge:
TOP = 0
BOTTOM = 3
class DockingMonitor:
ACTIVE = 100
PRIMARY = 110
MONITOR0 = 0
MONITOR1 = 1
MONITOR2 = 2
MONITOR3 = 3
MONITOR4 = 4
MONITOR5 = 5
MONITOR6 = 6
MONITOR7 = 7
MONITOR8 = 8
class UIMask:
""" enum of keyboard UI update flags """
(
CONTROLLERS,
SUGGESTIONS,
LAYOUT,
LAYERS,
SIZE,
REDRAW,
) = (1<<bit for bit in range(6))
ALL = -1
|