120 lines
3.2 KiB
Python
120 lines
3.2 KiB
Python
# ----------------------------------------------------------------------------
|
|
# pyglet
|
|
# Copyright (c) 2006-2008 Alex Holkner
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# * Neither the name of pyglet nor the names of its
|
|
# contributors may be used to endorse or promote products
|
|
# derived from this software without specific prior written
|
|
# permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
# ----------------------------------------------------------------------------
|
|
|
|
'''
|
|
'''
|
|
|
|
__docformat__ = 'restructuredtext'
|
|
__version__ = '$Id: cursorfont.py 1579 2008-01-15 14:47:19Z Alex.Holkner $'
|
|
|
|
# /usr/include/X11/cursorfont.h
|
|
|
|
XC_num_glyphs = 154
|
|
XC_X_cursor = 0
|
|
XC_arrow = 2
|
|
XC_based_arrow_down = 4
|
|
XC_based_arrow_up = 6
|
|
XC_boat = 8
|
|
XC_bogosity = 10
|
|
XC_bottom_left_corner = 12
|
|
XC_bottom_right_corner = 14
|
|
XC_bottom_side = 16
|
|
XC_bottom_tee = 18
|
|
XC_box_spiral = 20
|
|
XC_center_ptr = 22
|
|
XC_circle = 24
|
|
XC_clock = 26
|
|
XC_coffee_mug = 28
|
|
XC_cross = 30
|
|
XC_cross_reverse = 32
|
|
XC_crosshair = 34
|
|
XC_diamond_cross = 36
|
|
XC_dot = 38
|
|
XC_dotbox = 40
|
|
XC_double_arrow = 42
|
|
XC_draft_large = 44
|
|
XC_draft_small = 46
|
|
XC_draped_box = 48
|
|
XC_exchange = 50
|
|
XC_fleur = 52
|
|
XC_gobbler = 54
|
|
XC_gumby = 56
|
|
XC_hand1 = 58
|
|
XC_hand2 = 60
|
|
XC_heart = 62
|
|
XC_icon = 64
|
|
XC_iron_cross = 66
|
|
XC_left_ptr = 68
|
|
XC_left_side = 70
|
|
XC_left_tee = 72
|
|
XC_leftbutton = 74
|
|
XC_ll_angle = 76
|
|
XC_lr_angle = 78
|
|
XC_man = 80
|
|
XC_middlebutton = 82
|
|
XC_mouse = 84
|
|
XC_pencil = 86
|
|
XC_pirate = 88
|
|
XC_plus = 90
|
|
XC_question_arrow = 92
|
|
XC_right_ptr = 94
|
|
XC_right_side = 96
|
|
XC_right_tee = 98
|
|
XC_rightbutton = 100
|
|
XC_rtl_logo = 102
|
|
XC_sailboat = 104
|
|
XC_sb_down_arrow = 106
|
|
XC_sb_h_double_arrow = 108
|
|
XC_sb_left_arrow = 110
|
|
XC_sb_right_arrow = 112
|
|
XC_sb_up_arrow = 114
|
|
XC_sb_v_double_arrow = 116
|
|
XC_shuttle = 118
|
|
XC_sizing = 120
|
|
XC_spider = 122
|
|
XC_spraycan = 124
|
|
XC_star = 126
|
|
XC_target = 128
|
|
XC_tcross = 130
|
|
XC_top_left_arrow = 132
|
|
XC_top_left_corner = 134
|
|
XC_top_right_corner = 136
|
|
XC_top_side = 138
|
|
XC_top_tee = 140
|
|
XC_trek = 142
|
|
XC_ul_angle = 144
|
|
XC_umbrella = 146
|
|
XC_ur_angle = 148
|
|
XC_watch = 150
|
|
XC_xterm = 152
|