#ifndef IMAGES_GLYPH_H #define IMAGES_GLYPH_H /* ** $VER: glyph.h 44.1 (19.10.1999) ** Includes Release 45.1 ** ** Definitions for the glyph.image BOOPSI class ** ** (C) Copyright 1987-2001 Amiga, Inc. ** All Rights Reserved */ /*****************************************************************************/ #ifndef REACTRION_REACTION_H #include #endif #ifndef INTUITION_IMAGECLASS_H #include #endif /*****************************************************************************/ #define GLYPH_Dummy (REACTION_Dummy + 0x15000) #define GLYPH_Glyph (GLYPH_Dummy+1) /* (WORD) Glyph type to draw, see below. Defaults to GLYPH_NONE. */ #define GLYPH_DrawInfo (GLYPH_Dummy+2) /* Obsolete - do not use */ /*****************************************************************************/ /* Defines for GLYPH_Glyph */ #define GLYPH_NONE 0 #define GLYPH_DOWNARROW 1 #define GLYPH_UPARROW 2 #define GLYPH_LEFTARROW 3 #define GLYPH_RIGHTARROW 4 #define GLYPH_DROPDOWN 5 #define GLYPH_POPUP 6 #define GLYPH_CHECKMARK 7 #define GLYPH_POPFONT 8 #define GLYPH_POPFILE 9 #define GLYPH_POPDRAWER 10 #define GLYPH_POPSCREENMODE 11 #define GLYPH_POPTIME 12 #define GLYPH_RADIOBUTTON 18 #define GLYPH_RETURNARROW 20 #define GLYPH_BDOWNARROW 21 #define GLYPH_BUPARROW 22 #define GLYPH_BLEFTARROW 23 #define GLYPH_BRIGHTARROW 24 #define GLYPH_DROPDOWNMENU 25 #define GLYPH_CYCLE 26 #endif /* IMAGES_GLYPH_H */