1 #ifndef IMAGES_LABEL_H 2 #define IMAGES_LABEL_H 3 4 /* 5 label.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_GADGETCLASS_H 15 # include <intuition/imageclass.h> 16 #endif 17 18 19 /* Attributes defined by label.image */ 20 21 #define LABEL_Dummy (REACTION_Dummy + 0x0006000) 22 #define LABEL_DrawInfo (SYSIA_DrawInfo) 23 #define LABEL_Text (LABEL_Dummy + 1) 24 #define LABEL_Image (LABEL_Dummy + 2) 25 #define LABEL_Mapping (LABEL_Dummy + 3) 26 #define LABEL_Justification (LABEL_Dummy + 4) 27 #define LABEL_Key (LABEL_Dummy + 5) 28 #define LABEL_Underscore (LABEL_Dummy + 6) 29 #define LABEL_DisposeImage (LABEL_Dummy + 7) 30 #define LABEL_SoftStyle (LABEL_Dummy + 8) 31 #define LABEL_VerticalSpacing (LABEL_Dummy + 9) 32 33 34 /* LABEL_Justification modes */ 35 36 #define LJ_LEFT 0 37 #define LJ_CENTRE 1 38 #define LJ_RIGHT 2 39 40 /* Language fix */ 41 42 #define LJ_CENTER LJ_CENTRE 43 44 /*** OBSOLETE ***/ 45 46 #define LABEL_LEFT LJ_LEFT 47 #define LABEL_CENTRE LJ_CENTRE 48 #define LABEL_CENTER LJ_CENTRE 49 #define LABEL_RIGHT LJ_RIGHT 50 51 52 #endif /* IMAGES_LABEL_H */