S&B Volcano vaporizer remote control with Pi Pico W
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * text.h
  3. *
  4. * Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * See <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __TEXT_H__
  19. #define __TEXT_H__
  20. #include "mcufont.h"
  21. #include "menu.h"
  22. #define TEXT_BG_NONE -1
  23. #define TEXT_BOX_HEIGHT(font, space) ((MENU_MAX_LINES * font) + ((MENU_MAX_LINES - 1) * space))
  24. struct text_font {
  25. const char *fontname;
  26. //int scale; // TODO not supported - requires somewhere to store scaled versions
  27. const struct mf_font_s *font;
  28. };
  29. struct text_conf {
  30. const char *text;
  31. int x;
  32. int y;
  33. int y_text_off;
  34. bool justify;
  35. enum mf_align_t alignment;
  36. int width;
  37. int height;
  38. int margin;
  39. int fg;
  40. int bg;
  41. struct text_font *font;
  42. };
  43. void text_prepare_font(struct text_font *tf);
  44. int16_t text_draw(struct text_conf *tc);
  45. int16_t text_box(const char *s, bool centered,
  46. const char *fontname,
  47. uint16_t x_off, uint16_t width,
  48. uint16_t y_off, uint16_t height,
  49. int16_t y_text_off);
  50. #endif // __TEXT_H__