Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/solaris/classes/sun/awt/X11/XCursorFontConstants.java
32288 views
/*1* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.awt.X11;2627final public class XCursorFontConstants {2829private XCursorFontConstants(){}3031/* cursorfont defines */32static final int XC_num_glyphs=154;33static final int XC_X_cursor=0;34static final int XC_arrow=2;35static final int XC_based_arrow_down=4;36static final int XC_based_arrow_up=6;37static final int XC_boat=8;38static final int XC_bogosity=10;39static final int XC_bottom_left_corner=12;40static final int XC_bottom_right_corner=14;41static final int XC_bottom_side=16;42static final int XC_bottom_tee=18;43static final int XC_box_spiral=20;44static final int XC_center_ptr=22;45static final int XC_circle=24;46static final int XC_clock=26;47static final int XC_coffee_mug=28;48static final int XC_cross=30;49static final int XC_cross_reverse=32;50static final int XC_crosshair=34;51static final int XC_diamond_cross=36;52static final int XC_dot=38;53static final int XC_dotbox=40;54static final int XC_double_arrow=42;55static final int XC_draft_large=44;56static final int XC_draft_small=46;57static final int XC_draped_box=48;58static final int XC_exchange=50;59static final int XC_fleur=52;60static final int XC_gobbler=54;61static final int XC_gumby=56;62static final int XC_hand1=58;63static final int XC_hand2=60;64static final int XC_heart=62;65static final int XC_icon=64;66static final int XC_iron_cross=66;67static final int XC_left_ptr=68;68static final int XC_left_side=70;69static final int XC_left_tee=72;70static final int XC_leftbutton=74;71static final int XC_ll_angle=76;72static final int XC_lr_angle=78;73static final int XC_man=80;74static final int XC_middlebutton=82;75static final int XC_mouse=84;76static final int XC_pencil=86;77static final int XC_pirate=88;78static final int XC_plus=90;79static final int XC_question_arrow=92;80static final int XC_right_ptr=94;81static final int XC_right_side=96;82static final int XC_right_tee=98;83static final int XC_rightbutton=100;84static final int XC_rtl_logo=102;85static final int XC_sailboat=104;86static final int XC_sb_down_arrow=106;87static final int XC_sb_h_double_arrow=108;88static final int XC_sb_left_arrow=110;89static final int XC_sb_right_arrow=112;90static final int XC_sb_up_arrow=114;91static final int XC_sb_v_double_arrow=116;92static final int XC_shuttle=118;93static final int XC_sizing=120;94static final int XC_spider=122;95static final int XC_spraycan=124;96static final int XC_star=126;97static final int XC_target=128;98static final int XC_tcross=130;99static final int XC_top_left_arrow=132;100static final int XC_top_left_corner=134;101static final int XC_top_right_corner=136;102static final int XC_top_side=138;103static final int XC_top_tee=140;104static final int XC_trek=142;105static final int XC_ul_angle=144;106static final int XC_umbrella=146;107static final int XC_ur_angle=148;108static final int XC_watch=150;109static final int XC_xterm=152;110}111112113