1 #ifndef GADGETS_SPACE_H 2 #define GADGETS_SPACE_H 3 4 /* 5 space.gadget 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/gadgetclass.h> 16 #endif 17 18 19 /* Attributes defined by space.gadget */ 20 21 #define SPACE_Dummy (REACTION_Dummy + 0x9000) 22 #define SPACE_MinHeight (SPACE_Dummy + 1) 23 #define SPACE_MinWidth (SPACE_Dummy + 2) 24 #define SPACE_MouseX (SPACE_Dummy + 3) 25 #define SPACE_MouseY (SPACE_Dummy + 4) 26 #define SPACE_Transparent (SPACE_Dummy + 5) 27 #define SPACE_AreaBox (SPACE_Dummy + 6) 28 #define SPACE_RenderHook (SPACE_Dummy + 7) 29 #define SPACE_BevelStyle (SPACE_Dummy + 8) 30 31 32 #endif /* GADGETS_SPACE_H */