home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / plotlib.lha / Plot_1.lzh / Demo / Helpgadget.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-11  |  2.3 KB  |  167 lines

  1. #ifndef HELPGADGET_H
  2. #define HELPGADGET_H
  3.  
  4. /****************************************************************
  5.  *                                                                                                                            *
  6.  * Funktion : HelpGadget.h                                                                            *
  7.  *                                                                                                                            *
  8.  ****************************************************************
  9.  *                                                                                                                            *
  10.  *     Input : None                                                                                                *
  11.  *                                                                                                                            *
  12.  *                                                                                                                            *
  13.  *    Output : None                                                                                                *
  14.  *                                                                                                                            *
  15.  *                                                                                                                            *
  16.  ****************************************************************
  17.  *                                                                                                                            *
  18.  * Comment : Definitionen der Gadgets für das HelpWindow                *
  19.  *                                                                                                                            *
  20.  *         Rev : V1.0                                                                                                *
  21.  *                                                                                                                            *
  22.  * History : V1.0 erstellen dieses Files                         01.09.89     *
  23.  *                                                                                                                            *
  24.  *         Doc : Intuition Reference Manual                                                    *
  25.  *                                                                                                                            *
  26.  *        Bugs : keine bekannten                                                                        *
  27.  *                                                                                                                            *
  28.  *     Autor : Oesch Silvano                                                                            *
  29.  *                                                                                                                            *
  30.  *     Datum : 01.09.89                                                                                        *
  31.  *                                                                                                                            *
  32.  ****************************************************************/
  33.  
  34. SHORT HpBV1[] =
  35. {
  36.     0,0,
  37.     65,0,
  38.     65,11,
  39.     0,11,
  40.     0,0
  41. };
  42.  
  43. struct Border HpB1 =
  44. {
  45.     -1,-1,
  46.     3,0,JAM1,
  47.     5,
  48.     HpBV1,
  49.     NULL
  50. };
  51.  
  52. struct IntuiText HpIT1 =
  53. {
  54.     3,0,JAM2,
  55.     5,1,
  56.     &TOPAZ80,
  57.     "Abbruch",
  58.     NULL
  59. };
  60.  
  61. struct Gadget HpG3 =
  62. {
  63.     NULL,
  64.     129,14,
  65.     64,10,
  66.     NULL,
  67.     RELVERIFY,
  68.     BOOLGADGET,
  69.     (APTR)&HpB1,
  70.     NULL,
  71.     &HpIT1,
  72.     NULL,
  73.     NULL,
  74.     2,
  75.     NULL
  76. };
  77.  
  78. SHORT HpBV2[] =
  79. {
  80.     0,0,
  81.     161,0,
  82.     161,11,
  83.     0,11,
  84.     0,0
  85. };
  86.  
  87. struct Border HpB2 =
  88. {
  89.     -1,-1,
  90.     3,0,JAM1,
  91.     5,
  92.     HpBV2,
  93.     NULL
  94. };
  95.  
  96. struct IntuiText HpIT2 =
  97. {
  98.     3,0,JAM2,
  99.     5,1,
  100.     &TOPAZ80,
  101.     "vorhergehende Seite",
  102.     NULL
  103. };
  104.  
  105. struct Gadget HpG2 =
  106. {
  107.     &HpG3,
  108.     201,14,
  109.     160,10,
  110.     NULL,
  111.     RELVERIFY,
  112.     BOOLGADGET,
  113.     (APTR)&HpB2,
  114.     NULL,
  115.     &HpIT2,
  116.     NULL,
  117.     NULL,
  118.     3,
  119.     NULL
  120. };
  121.  
  122. SHORT HpBV3[] =
  123. {
  124.     0,0,
  125.     111,0,
  126.     111,11,
  127.     0,11,
  128.     0,0
  129. };
  130.  
  131. struct Border HpB3 =
  132. {
  133.     -1,-1,
  134.     3,0,JAM1,
  135.     5,
  136.     HpBV3,
  137.     NULL
  138. };
  139.  
  140. struct IntuiText HpIT3 =
  141. {
  142.     3,0,JAM2,
  143.     3,1,    
  144.     &TOPAZ80,
  145.     "nächste Seite",
  146.     NULL
  147. };
  148.  
  149. struct Gadget HpG1 =
  150. {
  151.     &HpG2,
  152.     10,14,
  153.     110,10,
  154.     NULL,
  155.     RELVERIFY,
  156.     BOOLGADGET,
  157.     (APTR)&HpB3,
  158.     NULL,
  159.     &HpIT3,
  160.     NULL,
  161.     NULL,
  162.     1,
  163.     NULL
  164. };
  165.  
  166. #endif HELPGADGET_H
  167.