home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d186 / cards'o'rama.lha / Cards'O'Rama / Sources / sources.zoo / myscreen.h < prev    next >
C/C++ Source or Header  |  1989-02-25  |  1KB  |  23 lines

  1. /*                               myscreen.h                             */
  2. /*                                                                      */
  3. /* This one is going to be the custom screen that I prefer: in fact is  */
  4. /* colorful (5 bit planes) and it's lo-res (no flicker)...              */
  5. /* Furthermore, the default font is the typical 8 points topaz.font, an */
  6. /* 80 column font which looks like a 40 column font in lo-res mode.     */
  7.  
  8. struct TextAttr myfont = {"topaz.font", 8, 0, 0};
  9.  
  10. struct NewScreen myscreen =
  11.    {
  12.    0, 0,                            /* Left Edge, Top Edge */
  13.    320, 200,                        /* Width, Height */
  14.    5,                               /* Depth: 5 bitplanes = 32 colors */
  15.    0, 1,                            /* Detail Pen, Block Pen */
  16.    NULL,                            /* ViewModes */
  17.    CUSTOMSCREEN,                    /* Type */
  18.    &myfont,                         /* Default font */
  19.    "Cards'O'Rama 1.0  by Werther Pirani",   /* Default Title */
  20.    NULL,                            /* Gadgets */
  21.    NULL,                            /* Pointer to a custom BitMap */
  22.    };
  23.