home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / reference / amiga_mail_vol2 / i-7 / fontreq.c < prev    next >
C/C++ Source or Header  |  1996-01-30  |  4KB  |  131 lines

  1. ;/* fontreq.c - Execute me to compile me with SAS/C 6.56
  2. sc DATA=NEAR NMINC STRMERGE STREQ NOSTKCHK SAVEDS IGNORE=73 fontreq.c
  3. slink FROM LIB:c.o,fontreq.o TO fontreq LIBRARY LIB:sc.lib,LIB:amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1991 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga,
  11. Inc. for use with the Amiga Mail Volume II technical publication.
  12. Amiga Mail Volume II contains additional information on the correct
  13. usage of the techniques and operating system functions presented in
  14. these examples.  The source and executable code of these examples may
  15. only be distributed in free electronic form, via bulletin board or
  16. as part of a fully non-commercial and freely redistributable
  17. diskette.  Both the source and executable code (including comments)
  18. must be included, without modification, in any copy.  This example
  19. may not be published in printed form or distributed with any
  20. commercial product. However, the programming techniques and support
  21. routines set forth in these examples may be used in the development
  22. of original executable software products for Commodore Amiga
  23. computers.
  24.  
  25. All other rights reserved.
  26.  
  27. This example is provided "as-is" and is subject to change; no
  28. warranties are made.  All use is at your own risk. No liability or
  29. responsibility is assumed.
  30. */
  31.  
  32.  
  33. #include <clib/asl_protos.h>
  34. #include <clib/exec_protos.h>
  35. #include <clib/alib_stdio_protos.h>
  36. #include <exec/libraries.h>
  37.  
  38. #ifdef LATTICE
  39. int CXBRK(void) { return(0); }  /* Disable Lattice CTRL/C handling */
  40. int chkabort(void) { return(0); }  /* really */
  41. #endif
  42.  
  43.  
  44. UBYTE *vers = "\0$VER: fontreq 1.0";
  45.  
  46. void main(void);
  47. struct Library *AslBase, *UtilityBase;
  48.  
  49. /* The replacement strings for the "mode" cycle gadget.  The
  50. ** first string is the cycle gadget's label.  The other strings
  51. ** are the actual strings that will appear on the cycle gadget.
  52. */
  53. UBYTE *modelist[] =
  54. {
  55.     "RKM Modes",
  56.     "Mode 0",
  57.     "Mode 1",
  58.     "Mode 2",
  59.     "Mode 3",
  60.     "Mode 4",
  61.     "Mode 5",
  62.     "Mode 6",
  63.     "Mode 7",
  64.     "Mode 8",
  65.     "Mode 9",
  66.     NULL
  67. };
  68.  
  69.  
  70. void main()
  71. {
  72.  
  73.     struct FontRequester *fr;
  74.  
  75.     if (AslBase = OpenLibrary("asl.library", 36L))
  76.     {
  77.  
  78.         if (fr = (struct FontRequester *)
  79.             AllocAslRequestTags(ASL_FontRequest,
  80.                 /* tell the requester to use my custom mode names */
  81.                 ASL_ModeList, modelist,
  82.  
  83.                 /* Supply initial values for requester */
  84.                 ASL_FontName, (ULONG)"topaz.font",
  85.                 ASL_FontHeight, 11L,
  86.                 ASL_FontStyles, FSF_BOLD | FSF_ITALIC,
  87.                 ASL_FrontPen,  0x00L,
  88.                 ASL_BackPen,   0x01L,
  89.  
  90.                 /* Only display font sizes between 8 and
  91.                 ** 14, inclusive. */
  92.                 ASL_MinHeight, 8L,
  93.                 ASL_MaxHeight, 14L,
  94.  
  95.                 /* Give us all the gadgetry, but only display
  96.                 ** fixed width fonts */
  97.                 ASL_FuncFlags, FONF_FRONTCOLOR | FONF_BACKCOLOR |
  98.                     FONF_DRAWMODE | FONF_STYLES | FONF_FIXEDWIDTH,
  99.                 TAG_DONE))
  100.         {
  101.             /* application code here... */
  102.  
  103.  
  104.             /* Pop up the requester */
  105.             if (AslRequest(fr, 0L))
  106.             {
  107.                 /* The user selected something,  report their choice */
  108.                 printf("%s\n  YSize = %d  Style = 0x%x   Flags = 0x%x\n"
  109.                        "  FPen = 0x%x   BPen = 0x%x   DrawMode = 0x%x\n",
  110.                                fr->fo_Attr.ta_Name,
  111.                                fr->fo_Attr.ta_YSize,
  112.                                fr->fo_Attr.ta_Style,
  113.                                fr->fo_Attr.ta_Flags,
  114.                                fr->fo_FrontPen,
  115.                                fr->fo_BackPen,
  116.                                fr->fo_DrawMode);
  117.             }
  118.             else
  119.                 /* The user cancelled the requester, or
  120.                 ** some kind of error occured preventing
  121.                 ** the requester from opening. */
  122.                 printf("Request Cancelled\n");
  123.  
  124.             /* more application code here ...*/
  125.  
  126.             FreeAslRequest(fr);
  127.         }
  128.         CloseLibrary(AslBase);
  129.     }
  130. }
  131.