reader_gui.h
上传用户:holyzs
上传日期:2022-06-29
资源大小:2335k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. #ifndef __READER_GUI_H__
  2. #define __READER_GUI_H__ 1
  3. #include <reader_types.h>
  4. #ifdef WIN32
  5. #define PA_RGB(r,g,b) ((1 << 15) + (r) + ((g)<<5) + ((b)<<10))
  6. #endif
  7. #define READER_RGB(r, g, b) PA_RGB((r), (g), (b))
  8. #define READER_COLOR_WHITE ((color_t)READER_RGB(28, 28, 28))
  9. #define READER_COLOR_BLACK ((color_t)READER_RGB(0, 0, 0))
  10. #define READER_COLOR_RED ((color_t)READER_RGB(31, 0, 0))
  11. #define READER_COLOR_GREEN ((color_t)READER_RGB(0, 31, 0))
  12. #define READER_COLOR_BLUE ((color_t)READER_RGB(0, 0, 31))
  13. #define READER_COLOR_YELLOW ((color_t)READER_RGB(31, 31, 0))
  14. #define READER_COLOR_THIN_BLUE ((color_t)READER_RGB(2, 22, 28))
  15. #define READER_COLOR_GREY ((color_t)READER_RGB(13, 13, 7))
  16. //only draw horizontally or vertically
  17. void reader_rectangle(screen_t screen, int x1, int y1, int x2, int y2, color_t color, int fill);
  18. //only draw horizontally or vertically
  19. void reader_lineto(screen_t screen, int x1, int y1, int x2, int y2, color_t color);
  20. //show caption
  21. void reader_caption(screen_t screen, unsigned short *str);
  22. //draw arrow
  23. typedef enum {
  24.   LEFT_POINTER,
  25.   RIGHT_POINTER
  26. } arrow_pointer_t;
  27. void reader_arrow(screen_t screen, int x, int y, int size, arrow_pointer_t ap, color_t color);
  28. #endif