home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 420.lha / winformat_v1.0 / textfile.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-02  |  2.4 KB  |  50 lines

  1. struct IntuiText itext6 = {
  2.              3,0,JAM2,          /* front and back text pens, drawmode and fill byte */
  3.               76,179,           /* XY origin relateive to conatiner TOPLEFT */
  4.              NULL,              /* font pointer or NULL for default */
  5.              "Press <HELP> for help or <ESC> to quit",            /* pointer to text */
  6.              NULL               /* next InutiText structure */
  7. };
  8.  
  9. struct IntuiText itext5 = {
  10.              3,0,JAM2,          /* front and back text pens, drawmode and fill byte */
  11.               76, 67,           /* XY origin relateive to conatiner TOPLEFT */
  12.              NULL,              /* font pointer or NULL for default */
  13.              "First Name:",            /* pointer to text */
  14.              &itext6            /* next InutiText structure */
  15. };
  16.  
  17. struct IntuiText itext4 = {
  18.              3,0,JAM2,          /* front and back text pens, drawmode and fill byte */
  19.               84, 59,           /* XY origin relateive to conatiner TOPLEFT */
  20.              NULL,              /* font pointer or NULL for default */
  21.              "Last Name:",            /* pointer to text */
  22.              &itext5            /* next InutiText structure */
  23. };
  24.  
  25. struct IntuiText itext3 = {
  26.              3,0,JAM2,          /* front and back text pens, drawmode and fill byte */
  27.               52, 43,           /* XY origin relateive to conatiner TOPLEFT */
  28.              NULL,              /* font pointer or NULL for default */
  29.              "Name:",            /* pointer to text */
  30.              &itext4            /* next InutiText structure */
  31. };
  32.  
  33. struct IntuiText itext2 = {
  34.              3,0,JAM2,          /* front and back text pens, drawmode and fill byte */
  35.              260, 19,           /* XY origin relateive to conatiner TOPLEFT */
  36.              NULL,              /* font pointer or NULL for default */
  37.              "-------------",            /* pointer to text */
  38.              &itext3            /* next InutiText structure */
  39. };
  40.  
  41. struct IntuiText itext1 = {
  42.              3,0,JAM2,          /* front and back text pens, drawmode and fill byte */
  43.              260, 11,           /* XY origin relateive to conatiner TOPLEFT */
  44.              NULL,              /* font pointer or NULL for default */
  45.              "Sample Window",            /* pointer to text */
  46.              &itext2            /* next InutiText structure */
  47. };
  48.  
  49. #define IntuiTextList1 itext1
  50.