Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CFont
- Timestamp:
- 03/12/25 08:11:48 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CFont
v4 v5 7 7 == Constructors == 8 8 9 {{{ 9 {{{#!c++ 10 10 CFont(void); 11 11 CFont(int num); … … 19 19 ==== Examples ==== 20 20 21 {{{ 21 {{{#!c++ 22 22 CFont fontBigLabel; 23 23 int err = fontBigLabel.Load("/usr/share/fonts/ttf/LiberationSans-Bold.ttf", 42, 62); … … 44 44 ==== Example ==== 45 45 46 {{{ 46 {{{#!c++ 47 47 48 48 }}} … … 51 51 === Load === 52 52 53 {{{ 53 {{{#!c++ 54 54 int Load(const char* filename, int pixHeight1, int pixHeight2); 55 55 }}} … … 67 67 === SetPixelSize === 68 68 69 {{{ 69 {{{#!c++ 70 70 int GetHeight(int zoom); 71 71 }}} … … 80 80 === GetStrWidth === 81 81 82 {{{ 82 {{{#!c++ 83 83 int GetStrWidth(const char* str, int len, int zoom); 84 84 }}} … … 96 96 === DisplayText === 97 97 Displays a string using the specified font. 98 {{{ 98 {{{#!c++ 99 99 void DisplayText(const char* str, CDspArea *dspArea = NULL, int len = 0, int shortcutChar = 0); 100 100 void DisplayText(std::string& str, CDspArea *dspArea = NULL, int len = 0, int shortcutChar = 0);