home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-05 | 1.1 KB | 29 lines |
- //
- // (c) 1997 Microsoft Corporation. All rights reserved.
- //
- public interface SDKConsts
- {
- public static final String IMG_NAMES[] = {
- "sunris00.gif", "sunris01.gif", "sunris02.gif", "sunris03.gif",
- "sunris04.gif", "sunris05.gif", "sunris06.gif", "sunris07.gif",
- "sunris08.gif", "sunris09.gif", "sunris10.gif", "sunris11.gif",
- "sunris12.gif", "sunris13.gif", "sunris14.gif", "sunris15.gif",
- "sunris16.gif", "sunris17.gif", "sunris18.gif", "sunris19.gif",
- "sunris20.gif", "sunris21.gif", "sunris22.gif", "sunris23.gif",
- "sunris24.gif", "sunris25.gif", "sunris26.gif", "sunris27.gif",
- "sunris28.gif", "sunris29.gif", "sunris30.gif", "sunris31.gif"
- };
-
- public static final int SUNRISE = 0;
- public static final int NUM_FRAMES = 32;
- public static final int NUM_IMAGES = NUM_FRAMES;
- public static final int NUM_IMAGES_HOT = 0;
-
- public static final int MAX_SCROLL = 128;
- public static final int INIT_POS = MAX_SCROLL/2;
- public static final int SPIN_INC = MAX_SCROLL/NUM_FRAMES;
- public static final int SEL_START = 21;
- public static final int SEL_END = 33;
- }
-
-