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