Home
last modified time | relevance | path

Searched defs:TypographyStyle (Results 1 – 3 of 3) sorted by relevance

/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/export/rosen_text/
Dtypography_style.h27 struct TypographyStyle { struct
28 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 size
34 double heightScale_ = 1.0;
35 bool heightOnly_ = false;
36 bool useLineStyle_ = false;
38 FontWeight lineStyleFontWeight_ = FontWeight::W400;
[all …]
/foundation/graphic/graphic_2d/rosen/modules/texgine/export/texgine/
Dtypography_style.h35 struct TypographyStyle { struct
37 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 …]
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/utils/
Dmemory_reporter.cpp169 DECLARE_RMU(struct TypographyStyle) in DECLARE_RMU()