Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CFont


Ignore:
Timestamp:
03/12/25 08:11:48 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CFont

    v4 v5  
    77== Constructors ==
    88
    9 {{{
     9{{{#!c++
    1010CFont(void);
    1111CFont(int num);
     
    1919==== Examples ====
    2020
    21 {{{
     21{{{#!c++
    2222CFont fontBigLabel;
    2323int err = fontBigLabel.Load("/usr/share/fonts/ttf/LiberationSans-Bold.ttf", 42,  62);
     
    4444==== Example ====
    4545
    46 {{{
     46{{{#!c++
    4747
    4848}}}
     
    5151=== Load ===
    5252
    53 {{{
     53{{{#!c++
    5454int Load(const char* filename, int pixHeight1, int pixHeight2);
    5555}}}
     
    6767=== SetPixelSize ===
    6868
    69 {{{
     69{{{#!c++
    7070int GetHeight(int zoom);
    7171}}}
     
    8080=== GetStrWidth ===
    8181
    82 {{{
     82{{{#!c++
    8383int GetStrWidth(const char* str, int len, int zoom);
    8484}}}
     
    9696=== DisplayText ===
    9797Displays a string using the specified font.
    98 {{{
     98{{{#!c++
    9999void DisplayText(const char* str, CDspArea *dspArea = NULL, int len = 0, int shortcutChar = 0);
    100100void DisplayText(std::string& str, CDspArea *dspArea = NULL, int len = 0, int shortcutChar = 0);