home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / BOOPSI / GI1 / Include / gadgets / tabs.i < prev   
Encoding:
Text File  |  1999-10-27  |  1.4 KB  |  60 lines

  1.     IFND    GADGETS_TABS_I
  2. GADGETS_TABS_I    SET    1
  3.  
  4. **
  5. **    $VER: tabs.i 42.3 (14.2.94)
  6. **    Includes Release 42.1
  7. **
  8. **    Definitions for the tabs BOOPSI gadget class
  9. **
  10. **    (C) Copyright 1994-1999 Amiga, Inc.
  11. **    All Rights Reserved
  12. **
  13.  
  14. ;*****************************************************************************
  15.  
  16.     IFND EXEC_TYPES_I
  17.     INCLUDE "exec/types.i"
  18.     ENDC
  19.  
  20.     IFND UTILITY_TAGITEM_H
  21.     INCLUDE "utility/tagitem.i"
  22.     ENDC
  23.  
  24.     IFND INTUITION_GADGETCLASS_I
  25.     INCLUDE "intuition/gadgetclass.i"
  26.     ENDC
  27.  
  28. ;*****************************************************************************
  29.  
  30. TL_TEXTPEN        equ    0
  31. TL_BACKGROUNDPEN    equ    1
  32. TL_FILLTEXTPEN        equ    2
  33. TL_FILLPEN        equ    3
  34. MAX_TL_PENS        equ    4
  35.  
  36. ;*****************************************************************************
  37.  
  38. ; This structure is used to describe the labels for each of the tabs
  39.     STRUCTURE TabLabel,0
  40.     APTR     tl_Label            ; Label
  41.     STRUCT     tl_Pens,(MAX_TL_PENS*2)    ; Pens (array of UWORD's)
  42.     APTR     tl_Attrs            ; Additional attributes
  43.  
  44.     LABEL TabLabel_SIZEOF
  45.  
  46. ;*****************************************************************************
  47.  
  48. ; Additional attributes defined by the tabs.gadget class
  49. TABS_Dummy        equ    (TAG_USER+$04000000)
  50.  
  51. TABS_Labels        equ    (TABS_Dummy+1)
  52.     ; (TabLabelP) Array of labels
  53.  
  54. TABS_Current        equ    (TABS_Dummy+2)
  55.     ; (LONG) Current tab
  56.  
  57. ;*****************************************************************************
  58.  
  59.     ENDC    ; GADGETS_TABS_I
  60.