001: /*
002: * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: package sun.awt.X11;
027:
028: public interface XCursorFontConstants {
029: /* cursorfont defines */
030: static final int XC_num_glyphs = 154;
031: static final int XC_X_cursor = 0;
032: static final int XC_arrow = 2;
033: static final int XC_based_arrow_down = 4;
034: static final int XC_based_arrow_up = 6;
035: static final int XC_boat = 8;
036: static final int XC_bogosity = 10;
037: static final int XC_bottom_left_corner = 12;
038: static final int XC_bottom_right_corner = 14;
039: static final int XC_bottom_side = 16;
040: static final int XC_bottom_tee = 18;
041: static final int XC_box_spiral = 20;
042: static final int XC_center_ptr = 22;
043: static final int XC_circle = 24;
044: static final int XC_clock = 26;
045: static final int XC_coffee_mug = 28;
046: static final int XC_cross = 30;
047: static final int XC_cross_reverse = 32;
048: static final int XC_crosshair = 34;
049: static final int XC_diamond_cross = 36;
050: static final int XC_dot = 38;
051: static final int XC_dotbox = 40;
052: static final int XC_double_arrow = 42;
053: static final int XC_draft_large = 44;
054: static final int XC_draft_small = 46;
055: static final int XC_draped_box = 48;
056: static final int XC_exchange = 50;
057: static final int XC_fleur = 52;
058: static final int XC_gobbler = 54;
059: static final int XC_gumby = 56;
060: static final int XC_hand1 = 58;
061: static final int XC_hand2 = 60;
062: static final int XC_heart = 62;
063: static final int XC_icon = 64;
064: static final int XC_iron_cross = 66;
065: static final int XC_left_ptr = 68;
066: static final int XC_left_side = 70;
067: static final int XC_left_tee = 72;
068: static final int XC_leftbutton = 74;
069: static final int XC_ll_angle = 76;
070: static final int XC_lr_angle = 78;
071: static final int XC_man = 80;
072: static final int XC_middlebutton = 82;
073: static final int XC_mouse = 84;
074: static final int XC_pencil = 86;
075: static final int XC_pirate = 88;
076: static final int XC_plus = 90;
077: static final int XC_question_arrow = 92;
078: static final int XC_right_ptr = 94;
079: static final int XC_right_side = 96;
080: static final int XC_right_tee = 98;
081: static final int XC_rightbutton = 100;
082: static final int XC_rtl_logo = 102;
083: static final int XC_sailboat = 104;
084: static final int XC_sb_down_arrow = 106;
085: static final int XC_sb_h_double_arrow = 108;
086: static final int XC_sb_left_arrow = 110;
087: static final int XC_sb_right_arrow = 112;
088: static final int XC_sb_up_arrow = 114;
089: static final int XC_sb_v_double_arrow = 116;
090: static final int XC_shuttle = 118;
091: static final int XC_sizing = 120;
092: static final int XC_spider = 122;
093: static final int XC_spraycan = 124;
094: static final int XC_star = 126;
095: static final int XC_target = 128;
096: static final int XC_tcross = 130;
097: static final int XC_top_left_arrow = 132;
098: static final int XC_top_left_corner = 134;
099: static final int XC_top_right_corner = 136;
100: static final int XC_top_side = 138;
101: static final int XC_top_tee = 140;
102: static final int XC_trek = 142;
103: static final int XC_ul_angle = 144;
104: static final int XC_umbrella = 146;
105: static final int XC_ur_angle = 148;
106: static final int XC_watch = 150;
107: static final int XC_xterm = 152;
108: }
|