home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / guicast / fonts.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  347b  |  16 lines

  1. #ifndef FONTS_H
  2. #define FONTS_H
  3.  
  4. #define LARGEFONT  0
  5. #define MEDIUMFONT 2
  6. #define SMALLFONT  1
  7. #define MEDIUM_7SEGMENT 4
  8.  
  9. // Specialized fonts not available in every widget
  10. #define BOLDFACE    0x8000
  11. #define LARGEFONT_3D  (LARGEFONT | BOLDFACE)
  12. #define MEDIUMFONT_3D  (MEDIUMFONT | BOLDFACE)
  13. #define SMALLFONT_3D   (SMALLFONT | BOLDFACE)
  14.  
  15. #endif
  16.