Setup environment to support multiple fonts
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3799 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
41d38c02e5
commit
2798946cc3
examples
@ -323,7 +323,7 @@ nxeg_getglyph(FAR struct nxeg_state_s *st, uint8_t ch)
|
||||
{
|
||||
/* No, it is not cached... Does the code map to a glyph? */
|
||||
|
||||
bm = nxf_getbitmap(ch);
|
||||
bm = nxf_getbitmap(ch, NXFONT_DEFAULT);
|
||||
if (!bm)
|
||||
{
|
||||
/* No, there is no glyph for this code. Use space */
|
||||
|
@ -179,7 +179,7 @@ static void nxeg_initstate(FAR struct nxeg_state_s *st, int wnum,
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_NX_KBD
|
||||
fontset = nxf_getfontset();
|
||||
fontset = nxf_getfontset(NXFONT_DEFAULT);
|
||||
st->nchars = 0;
|
||||
st->nglyphs = 0;
|
||||
st->height = fontset->mxheight;
|
||||
|
@ -228,7 +228,7 @@ static void nxhello_center(FAR struct nxgl_point_s *pos,
|
||||
{
|
||||
/* Get the font bitmap for this character */
|
||||
|
||||
fbm = nxf_getbitmap(*ptr);
|
||||
fbm = nxf_getbitmap(*ptr, NXFONT_DEFAULT);
|
||||
if (fbm)
|
||||
{
|
||||
/* Add the font size */
|
||||
@ -353,7 +353,7 @@ void nxhello_hello(NXWINDOW hwnd)
|
||||
|
||||
/* Get information about the font we are going to use */
|
||||
|
||||
fontset = nxf_getfontset();
|
||||
fontset = nxf_getfontset(NXFONT_DEFAULT);
|
||||
|
||||
/* Allocate a bit of memory to hold the largest rendered font */
|
||||
|
||||
@ -377,7 +377,7 @@ void nxhello_hello(NXWINDOW hwnd)
|
||||
{
|
||||
/* Get the bitmap font for this ASCII code */
|
||||
|
||||
fbm = nxf_getbitmap(*ptr);
|
||||
fbm = nxf_getbitmap(*ptr, NXFONT_DEFAULT);
|
||||
if (fbm)
|
||||
{
|
||||
uint8_t fheight; /* Height of this glyph (in rows) */
|
||||
|
@ -402,7 +402,7 @@ FAR struct nxtext_state_s *nxbg_getstate(void)
|
||||
* state structure
|
||||
*/
|
||||
|
||||
fontset = nxf_getfontset();
|
||||
fontset = nxf_getfontset(NXFONT_DEFAULT);
|
||||
g_bgstate.fheight = fontset->mxheight;
|
||||
g_bgstate.fwidth = fontset->mxwidth;
|
||||
g_bgstate.spwidth = fontset->spwidth;
|
||||
|
@ -304,7 +304,7 @@ static inline void nxpu_initstate(void)
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_NX_KBD
|
||||
fontset = nxf_getfontset();
|
||||
fontset = nxf_getfontset(NXFONT_DEFAULT);
|
||||
g_pustate.fheight = fontset->mxheight;
|
||||
g_pustate.fwidth = fontset->mxwidth;
|
||||
g_pustate.spwidth = fontset->spwidth;
|
||||
|
@ -332,7 +332,7 @@ static int nxtext_fontsize(uint8_t ch, FAR struct nxgl_size_s *size)
|
||||
|
||||
/* No, it is not cached... Does the code map to a font? */
|
||||
|
||||
fbm = nxf_getbitmap(ch);
|
||||
fbm = nxf_getbitmap(ch, NXFONT_DEFAULT);
|
||||
if (fbm)
|
||||
{
|
||||
/* Yes.. return the font size */
|
||||
@ -362,7 +362,7 @@ nxtext_getglyph(FAR struct nxtext_state_s *st, uint8_t ch)
|
||||
{
|
||||
/* No, it is not cached... Does the code map to a font? */
|
||||
|
||||
fbm = nxf_getbitmap(ch);
|
||||
fbm = nxf_getbitmap(ch, NXFONT_DEFAULT);
|
||||
if (fbm)
|
||||
{
|
||||
/* Yes.. render the glyph */
|
||||
|
Loading…
x
Reference in New Issue
Block a user