home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d828 / disktest.lha / DiskTest / Source / beginend.h < prev    next >
Text File  |  2001-02-25  |  2KB  |  70 lines

  1. /*------------------------------------------------*
  2.  | File: BEGINEND.h - Include file for BEGINEND.c |
  3.  *------------------------------------------------*/
  4.  
  5. /**
  6.  | #define's
  7.  | - parameters of the button gadgets
  8.  | - parameters of the checkbutton gadget
  9.  | - parameters of the scroller gadget
  10.  | - parameters of the "break window"gadgets
  11.  | - parameters of the output window
  12.  | - parameters of the AutoRequester
  13. **/
  14.  
  15. #define NUM_BUT         5
  16. #define GAD_LEFT        8
  17. #define GAD_TOP       157
  18. #define GAD_WIDTH      61
  19. #define GAD_HEIGHT     25
  20. #define GAD_DX1        72
  21. #define GAD_DX2       336
  22.  
  23. #define CBG_LEFT      355
  24. #define CBG_TOP       165
  25. #define CBG_WIDTH      26
  26. #define CBG_HEIGHT     11
  27.  
  28. #define SCR_TOP         5
  29. #define SCR_LEFT      603
  30. #define SCR_WIDTH      21
  31. #define SCR_HEIGHT    145
  32. #define ARROW_HEIGHT    8
  33.  
  34. #define BKG_TOP         6
  35. #define BKG_LEFT       11
  36. #define BKG_WIDTH     180
  37. #define BKG_HEIGHT     30
  38.  
  39. #define WIN_LEFT        0
  40. #define WIN_TOP         0
  41. #define WIN_WIDTH     640
  42. #define WIN_HEIGHT    189
  43. #define WIN_IDCMP1    IDCMP_REFRESHWINDOW
  44. #define WIN_IDCMP2    SCROLLERIDCMP
  45. #define WIN_IDCMP     (WIN_IDCMP1 | WIN_IDCMP2)
  46. #define ZB_LEFT        20
  47. #define ZB_TOP          1
  48. #define ZB_WIDTH      150
  49.  
  50. #define AR_ITX         24
  51. #define AR_ITY         12
  52. #define AR_OKX          6
  53. #define AR_OKY          3
  54. #define AR_WX         320
  55. #define AR_WY          60
  56.  
  57. /**
  58.  | Version tag string
  59. **/
  60.  
  61. static char VersionTag[] =
  62.   "\0$VER: " PROG_NAME " v" REVISION " - MLO " LAST_CHANGED ;
  63.  
  64. /**
  65.  | Local procedure prototypes
  66. **/
  67.  
  68. static void HelpScreen(void);
  69. static void IntuiInit(void);
  70.