12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * text.h
- *
- * Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * See <http://www.gnu.org/licenses/>.
- */
-
- #ifndef __TEXT_H__
- #define __TEXT_H__
-
- #include "mcufont.h"
-
- #define TEXT_BG_NONE -1
-
- struct text_font {
- const char *fontname;
- //int scale; // TODO not supported - requires somewhere to store scaled versions
-
- const struct mf_font_s *font;
- };
-
- struct text_conf {
- const char *text;
- int x;
- int y;
- int y_text_off;
- bool justify;
- enum mf_align_t alignment;
- int width;
- int height;
- int margin;
- int fg;
- int bg;
-
- struct text_font *font;
- };
-
- void text_prepare_font(struct text_font *tf);
- int16_t text_draw(struct text_conf *tc);
-
- #endif // __TEXT_H__
|