home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-05-04 | 1.4 KB | 39 lines |
- //
- // (C) Copyright 1995 - 1999 Microsoft Corporation. All rights reserved.
- //
- public interface SDKConsts
- {
- public static final String IMG_NAMES[] = {
- "texture.gif", "stars.gif", "bluedot.gif",
- "pushme.gif", "holdme.gif", "holdme_d.gif",
- "check.gif", "check_on.gif", "check_ind.gif",
- "radio.gif", "radio_on.gif",
- "world_1.gif", "world_2.gif", "world_3.gif", "world_4.gif",
- "world_5.gif", "world_6.gif", "world_7.gif", "world_8.gif",
- "world_9.gif", "world_10.gif", "world_11.gif", "world_12.gif",
- "world_13.gif", "world_14.gif", "world_15.gif", "world_16.gif"
- };
-
- public static final int TEXTURE = 0;
- public static final int STARS = 1;
- public static final int BLUEDOT = 2;
- public static final int PUSHME = 3;
- public static final int HOLDME = 4;
- public static final int HOLDME_DIS = 5;
- public static final int CHECKBTN = 6;
- public static final int CHECKBTN_ON = 7;
- public static final int CHECKBTN_IND = 8;
- public static final int RADIOBTN = 9;
- public static final int RADIOBTN_ON = 10;
- public static final int ANIMATION = 11;
- public static final int NUM_ANIMATE = 16;
- public static final int NUM_IMAGES = ANIMATION+NUM_ANIMATE;
- public static final int NUM_IMAGES_HOT = 0;
-
- public static final int B_PUSH = 0;
- public static final int B_CHECK = 1;
- public static final int B_RADIO = 2;
- public static final int B_REPEAT = 3;
- }
-
-