home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 39 / IOPROG_39.ISO / SOFT / sdkjava40.exe / data1.cab / fg_Samples / Samples / afc11 / Buttons / Src / SDKConsts.java < prev    next >
Encoding:
Java Source  |  2000-05-04  |  1.4 KB  |  39 lines

  1. //
  2. // (C) Copyright 1995 - 1999 Microsoft Corporation.  All rights reserved.
  3. //
  4. public interface SDKConsts
  5. {
  6.     public static final String IMG_NAMES[] = { 
  7.         "texture.gif",    "stars.gif",    "bluedot.gif",
  8.         "pushme.gif",    "holdme.gif",    "holdme_d.gif",
  9.         "check.gif",    "check_on.gif",    "check_ind.gif",
  10.         "radio.gif",    "radio_on.gif",
  11.         "world_1.gif",    "world_2.gif",    "world_3.gif",    "world_4.gif",
  12.         "world_5.gif",    "world_6.gif",    "world_7.gif",    "world_8.gif",
  13.         "world_9.gif",    "world_10.gif",    "world_11.gif",    "world_12.gif",
  14.         "world_13.gif",    "world_14.gif",    "world_15.gif",    "world_16.gif"
  15.     };
  16.  
  17.     public static final int TEXTURE = 0;
  18.     public static final int STARS = 1;
  19.     public static final int BLUEDOT = 2;
  20.     public static final int PUSHME = 3;
  21.     public static final int HOLDME = 4;
  22.     public static final int HOLDME_DIS = 5;
  23.     public static final int CHECKBTN = 6;
  24.     public static final int CHECKBTN_ON = 7;
  25.     public static final int CHECKBTN_IND = 8;
  26.     public static final int RADIOBTN = 9;
  27.     public static final int RADIOBTN_ON = 10;
  28.     public static final int ANIMATION = 11;
  29.     public static final int NUM_ANIMATE = 16;
  30.     public static final int NUM_IMAGES = ANIMATION+NUM_ANIMATE;
  31.     public static final int NUM_IMAGES_HOT = 0;
  32.  
  33.     public static final int B_PUSH = 0;
  34.     public static final int B_CHECK = 1;
  35.     public static final int B_RADIO = 2;
  36.     public static final int B_REPEAT = 3;
  37. }
  38.  
  39.