mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2025-12-18 15:17:42 +03:00
38 lines
957 B
C++
38 lines
957 B
C++
#include "EpdFontFamily.h"
|
|
|
|
const EpdFont* EpdFontFamily::getFont(const EpdFontStyle style) const {
|
|
if (style == BOLD && bold) {
|
|
return bold;
|
|
}
|
|
if (style == ITALIC && italic) {
|
|
return italic;
|
|
}
|
|
if (style == BOLD_ITALIC) {
|
|
if (boldItalic) {
|
|
return boldItalic;
|
|
}
|
|
if (bold) {
|
|
return bold;
|
|
}
|
|
if (italic) {
|
|
return italic;
|
|
}
|
|
}
|
|
|
|
return regular;
|
|
}
|
|
|
|
void EpdFontFamily::getTextDimensions(const char* string, int* w, int* h, const EpdFontStyle style) const {
|
|
getFont(style)->getTextDimensions(string, w, h);
|
|
}
|
|
|
|
bool EpdFontFamily::hasPrintableChars(const char* string, const EpdFontStyle style) const {
|
|
return getFont(style)->hasPrintableChars(string);
|
|
}
|
|
|
|
const EpdFontData* EpdFontFamily::getData(const EpdFontStyle style) const { return getFont(style)->data; }
|
|
|
|
const EpdGlyph* EpdFontFamily::getGlyph(const uint32_t cp, const EpdFontStyle style) const {
|
|
return getFont(style)->getGlyph(cp);
|
|
};
|