1 #ifndef GADGETS_CLICKTAB_H 2 #define GADGETS_CLICKTAB_H 3 4 /* 5 clicktab.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 /* clicktab.gadget node attributes */ 19 20 #define TNA_Dummy (TAG_USER + 0x010000) 21 #define TNA_UserData (TNA_Dummy + 1) 22 #define TNA_Enabled (TNA_Dummy + 2) 23 #define TNA_Spacing (TNA_Dummy + 3) 24 #define TNA_Highlight (TNA_Dummy + 4) 25 #define TNA_Image (TNA_Dummy + 5) 26 #define TNA_SelImage (TNA_Dummy + 6) 27 #define TNA_Text (TNA_Dummy + 7) 28 #define TNA_Number (TNA_Dummy + 8) 29 #define TNA_TextPen (TNA_Dummy + 9) 30 #define TNA_Disabled (TNA_Dummy + 10) 31 32 33 /* Attributes defined by clicktab.gadget */ 34 35 #define CLICKTAB_Dummy (REACTION_Dummy + 0x27000) 36 #define CLICKTAB_Labels (CLICKTAB_Dummy + 1) 37 #define CLICKTAB_Current (CLICKTAB_Dummy + 2) 38 #define CLICKTAB_CurrentNode (CLICKTAB_Dummy + 3) 39 #define CLICKTAB_Orientation (CLICKTAB_Dummy + 4) 40 #define CLICKTAB_PageGroup (CLICKTAB_Dummy + 5) 41 #define CLICKTAB_PageGroupBackFill (CLICKTAB_Dummy + 6) 42 43 44 /* CLICKTAB_Orientation modes */ 45 46 #define CTORIENT_HORIZ 0 47 #define CTORIENT_VERT 1 48 #define CTORIENT_HORIZFLIP 2 49 #define CTORIENT_VERTFLIP 3 50 51 52 #endif /* GADGETS_CLICKTAB_H */