home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / p2demo21.exe / PEL / FONT.PEL < prev    next >
Text File  |  1994-07-14  |  1KB  |  47 lines

  1. # $Header:   P:\source\wmacros\font.pev   1.10   14 Jul 1994 16:55:38   WALKER  $
  2.  
  3. ##############################################################################
  4. #
  5. #       Compuware Corporation
  6. #         31440 Northwestern Highway
  7. #           Farmington Hills, Michigan 48334-2564
  8. #
  9. #   This source code listing contains information that is
  10. #   proprietary to Compuware Corporation and may not be copied
  11. #   duplicated, translated, transmitted, stored, retrieved
  12. #   or in any manner or by any method conveyed or disclosed
  13. #   to a third party or parties without express written
  14. #   permission from Compuware Corporation.
  15. #
  16. #  
  17. ##############################################################################
  18.  
  19. #### $Workfile:   font.pel  $: font constants for display_mode() and font functions
  20.  
  21. global FONT_NONE            = 0
  22.  
  23. # Standard FONT Families
  24.  
  25. global FONT_DECORATIVE      = 1
  26. global FONT_ANY             = 2
  27. global FONT_MODERN          = 3
  28. global FONT_ROMAN           = 4
  29. global FONT_SCRIPT          = 5
  30. global FONT_SWISS           = 6
  31.  
  32. # Standard FONTs.
  33.  
  34. global FONT_MODERN8         = -1
  35. global FONT_MODERN10        = -2
  36. global FONT_MODERN12        = -3
  37.  
  38. # Font Attributes (Styles)
  39.  
  40. global FONT_NORMAL           =  0
  41. global FONT_LIGHT            =  1
  42. global FONT_BOLD             =  2
  43. global FONT_ITALIC           =  4
  44. global FONT_UNDERLINE        =  8
  45. global FONT_STRIKETHRU       =  16
  46. global FONT_FIXEDPITCH       =  32
  47.