1 #ifndef IMAGES_GLYPH_H
    2 #define IMAGES_GLYPH_H
    3 
    4 /*
    5 	glyph.image definitions (V45)
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef REACTION_REACTION_H
   11 # include <reaction/reaction.h>
   12 #endif
   13 
   14 #ifndef INTUITION_IMAGECLASS_H
   15 # include <intuition/imageclass.h>
   16 #endif
   17 
   18 
   19 /* Attributes defined by glyph.image */
   20 
   21 #define GLYPH_Dummy     (REACTION_Dummy + 0x15000)
   22 #define GLYPH_Glyph     (GLYPH_Dummy + 1)
   23 #define GLYPH_DrawInfo  (GLYPH_Dummy + 2)
   24 
   25 
   26 /* GLYPH_Glyph types */
   27 
   28 #define GLYPH_NONE           0
   29 #define GLYPH_DOWNARROW      1
   30 #define GLYPH_UPARROW        2
   31 #define GLYPH_LEFTARROW      3
   32 #define GLYPH_RIGHTARROW     4
   33 #define GLYPH_DROPDOWN       5
   34 #define GLYPH_POPUP          6
   35 #define GLYPH_CHECKMARK      7
   36 #define GLYPH_POPFONT        8
   37 #define GLYPH_POPFILE        9
   38 #define GLYPH_POPDRAWER      10
   39 #define GLYPH_POPSCREENMODE  11
   40 #define GLYPH_POPTIME        12
   41 #define GLYPH_RADIOBUTTON    18
   42 #define GLYPH_RETURNARROW    20
   43 #define GLYPH_BDOWNARROW     21
   44 #define GLYPH_BUPARROW       22
   45 #define GLYPH_BLEFTARROW     23
   46 #define GLYPH_BRIGHTARROW    24
   47 #define GLYPH_DROPDOWNMENU   25
   48 #define GLYPH_CYCLE          26
   49 
   50 
   51 #endif /* IMAGES_GLYPH_H */