font.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  font.h -- `Soft' font definitions
  3.  *
  4.  *  Created 1995 by Geert Uytterhoeven
  5.  *
  6.  *  This file is subject to the terms and conditions of the GNU General Public
  7.  *  License.  See the file COPYING in the main directory of this archive
  8.  *  for more details.
  9.  */
  10. #ifndef _VIDEO_FONT_H
  11. #define _VIDEO_FONT_H
  12. #include <linux/types.h>
  13. struct font_desc {
  14.     int idx;
  15.     const char *name;
  16.     int width, height;
  17.     const void *data;
  18.     int pref;
  19. };
  20. #define VGA8x8_IDX 0
  21. #define VGA8x16_IDX 1
  22. #define PEARL8x8_IDX 2
  23. #define VGA6x11_IDX 3
  24. #define FONT7x14_IDX 4
  25. #define FONT10x18_IDX 5
  26. #define SUN8x16_IDX 6
  27. #define SUN12x22_IDX 7
  28. #define ACORN8x8_IDX 8
  29. #define MINI4x6_IDX 9
  30. extern const struct font_desc font_vga_8x8,
  31. font_vga_8x16,
  32. font_pearl_8x8,
  33. font_vga_6x11,
  34. font_7x14,
  35. font_10x18,
  36. font_sun_8x16,
  37. font_sun_12x22,
  38. font_acorn_8x8,
  39. font_mini_4x6;
  40. /* Find a font with a specific name */
  41. extern const struct font_desc *find_font(const char *name);
  42. /* Get the default font for a specific screen size */
  43. extern const struct font_desc *get_default_font(int xres, int yres);
  44. /* Max. length for the name of a predefined font */
  45. #define MAX_FONT_NAME 32
  46. #endif /* _VIDEO_FONT_H */