Searched defs:TypographyStyle (Results 1 – 3 of 3) sorted by relevance
27 struct TypographyStyle { struct28 const static inline std::u16string ELLIPSIS = u"\u2026";30 FontWeight fontWeight_ = FontWeight::W400;31 FontStyle fontStyle_ = FontStyle::NORMAL;32 std::string fontFamily_ = "";33 double fontSize_ = 14.0; // default is libtxt text style fonst size34 double heightScale_ = 1.0;35 bool heightOnly_ = false;36 bool useLineStyle_ = false;38 FontWeight lineStyleFontWeight_ = FontWeight::W400;[all …]
35 struct TypographyStyle { struct37 FontWeight fontWeight = FontWeight::W400;38 FontStyle fontStyle = FontStyle::NORMAL;39 std::vector<std::string> fontFamilies = {};40 double fontSize = 16.0;41 double heightScale = 1.0;42 bool heightOnly = false;43 std::string locale;46 size_t maxLines = 1e9;47 std::u16string ellipsis = u"...";[all …]
169 DECLARE_RMU(struct TypographyStyle) in DECLARE_RMU()