Canvas graphics library  0.1.0
This library is developed to perform canvas graphics in memory buffers
font.h
Go to the documentation of this file.
1 /*
2  MIT License
3 
4  Copyright (c) 2019, Alexey Dynda
5 
6  Permission is hereby granted, free of charge, to any person obtaining a copy
7  of this software and associated documentation files (the "Software"), to deal
8  in the Software without restriction, including without limitation the rights
9  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  copies of the Software, and to permit persons to whom the Software is
11  furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in all
14  copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  SOFTWARE.
23 */
28 #ifndef _NANO_FONT_H_
29 #define _NANO_FONT_H_
30 
31 #include "canvas_types.h"
32 
39 #define SSD1306_MORE_CHARS_REQUIRED 0xffff
40 
45 class NanoFont
46 {
47 public:
53  NanoFont() {}
54 
58  NanoFont(const uint8_t * progmemFont) { loadFixedFont( progmemFont ); }
59 
66  void loadFixedFont(const uint8_t * progmemFont);
67 
74  void loadFreeFont(const uint8_t * progmemFont);
75 
83  void loadSecondaryFont(const uint8_t * progmemUnicode);
84 
85 #ifndef DOXYGEN_SHOULD_SKIP_THIS
86  void loadFixedFont_oldStyle(const uint8_t * progmemFont);
87 #endif
88 
89 #ifndef DOXYGEN_SHOULD_SKIP_THIS
90 
95  void loadSquixFont(const uint8_t * progmemFont);
96 #endif
97 
112  void getCharBitmap(uint16_t ch, SCharInfo *info);
113 
122  lcduint_t getTextSize(const char *text, lcduint_t *height = nullptr);
123 
131  static uint16_t unicode16FromUtf8(uint8_t ch);
132 
137  const SFontHeaderRecord &getHeader() { return m_fixedFont.h; }
138 
143  uint8_t getPages() { return m_fixedFont.pages; }
144 
145 #ifndef DOXYGEN_SHOULD_SKIP_THIS
146  const uint8_t *getPrimaryTable() { return m_fixedFont.primary_table; }
147 #endif
148 
149 private:
150  SFixedFontInfo m_fixedFont{};
151 
152  void (*m_getCharBitmap)(SFixedFontInfo &font,uint16_t unicode, SCharInfo *info) = nullptr;
153 };
154 
155 extern NanoFont g_canvas_font;
156 
161 #endif
162 
uint8_t lcduint_t
Definition: canvas_types.h:81
NanoFont(const uint8_t *progmemFont)
Definition: font.h:58
const uint8_t * primary_table
font chars bits
Definition: canvas_types.h:135
lcduint_t getTextSize(const char *text, lcduint_t *height=nullptr)
returns text width in pixels (and its height if height is requested)
NanoFont()
Definition: font.h:53
Definition: font.h:45
uint8_t getPages()
Definition: font.h:143
static uint16_t unicode16FromUtf8(uint8_t ch)
const SFontHeaderRecord & getHeader()
Definition: font.h:137
SFontHeaderRecord h
record, containing information on font
Definition: canvas_types.h:131
void loadFixedFont(const uint8_t *progmemFont)
void loadSecondaryFont(const uint8_t *progmemUnicode)
void loadFreeFont(const uint8_t *progmemFont)
uint8_t pages
height in pages (each page height is 8-pixels)
Definition: canvas_types.h:133
void getCharBitmap(uint16_t ch, SCharInfo *info)
returns char data for currently set (active) font.