home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 602b.lha / StripANSI_v1.0 / Source / source.lzh / message.h < prev    next >
C/C++ Source or Header  |  1991-07-31  |  920b  |  31 lines

  1.  
  2. struct TextAttr MTOPAZ80 = {
  3.     (STRPTR)"topaz.font",
  4.     TOPAZ_EIGHTY,0,0
  5. };
  6. struct IntuiText MIText1 = {
  7.     2,3,JAM2,    /* front and back text pens, drawmode and fill byte */
  8.     2,17,    /* XY origin relative to container TopLeft */
  9.     &MTOPAZ80,    /* font pointer or NULL for default */
  10.     (UBYTE *)"The Text Would Go Here",    /* pointer to text */
  11.     NULL    /* next IntuiText structure */
  12. };
  13.  
  14. #define MITextList MIText1
  15.  
  16. struct NewWindow MessageWin = {
  17.     169,71,    /* window XY origin relative to TopLeft of screen */
  18.     308,43,    /* window width and height */
  19.     0,1,    /* detail and block pens */
  20.     NULL,    /* IDCMP flags */
  21.     ACTIVATE,    /* other window flags */
  22.     NULL,    /* first gadget in gadget list */
  23.     NULL,    /* custom CHECKMARK imagery */
  24.     NULL,    /* window title */
  25.     NULL,    /* custom screen pointer */
  26.     NULL,    /* custom bitmap */
  27.     5,5,    /* minimum width and height */
  28.     640,200,    /* maximum width and height */
  29.     WBENCHSCREEN    /* destination screen type */
  30. };
  31.