mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
cFont::CreateFont() now returns a dummy font in case there are no fonts installed
This commit is contained in:
parent
3cf87dfe8a
commit
dbf342df3c
2
HISTORY
2
HISTORY
@ -8135,3 +8135,5 @@ Video Disk Recorder Revision History
|
|||||||
2014-01-07: Version 2.1.4
|
2014-01-07: Version 2.1.4
|
||||||
|
|
||||||
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
||||||
|
- cFont::CreateFont() now returns a dummy font in case there are no fonts installed.
|
||||||
|
This prevents a crash with the LCARS skin on a system that has no fonts.
|
||||||
|
23
font.c
23
font.c
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* BiDi support by Osama Alrawab <alrawab@hotmail.com> @2008 Tripoli-Libya.
|
* BiDi support by Osama Alrawab <alrawab@hotmail.com> @2008 Tripoli-Libya.
|
||||||
*
|
*
|
||||||
* $Id: font.c 3.1 2013/04/07 14:42:13 kls Exp $
|
* $Id: font.c 3.2 2014/01/07 12:19:45 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "font.h"
|
#include "font.h"
|
||||||
@ -382,10 +382,13 @@ void cFreetypeFont::DrawText(cPixmap *Pixmap, int x, int y, const char *s, tColo
|
|||||||
// A dummy font, in case there are no fonts installed:
|
// A dummy font, in case there are no fonts installed:
|
||||||
|
|
||||||
class cDummyFont : public cFont {
|
class cDummyFont : public cFont {
|
||||||
|
private:
|
||||||
|
int height;
|
||||||
public:
|
public:
|
||||||
virtual int Width(uint c) const { return 10; }
|
cDummyFont(int CharHeight) { height = CharHeight; }
|
||||||
virtual int Width(const char *s) const { return 50; }
|
virtual int Width(uint c) const { return height; }
|
||||||
virtual int Height(void) const { return 20; }
|
virtual int Width(const char *s) const { return height; }
|
||||||
|
virtual int Height(void) const { return height; }
|
||||||
virtual void DrawText(cBitmap *Bitmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {}
|
virtual void DrawText(cBitmap *Bitmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {}
|
||||||
virtual void DrawText(cPixmap *Pixmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {};
|
virtual void DrawText(cPixmap *Pixmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {};
|
||||||
};
|
};
|
||||||
@ -396,11 +399,8 @@ cFont *cFont::fonts[eDvbFontSize] = { NULL };
|
|||||||
|
|
||||||
void cFont::SetFont(eDvbFont Font, const char *Name, int CharHeight)
|
void cFont::SetFont(eDvbFont Font, const char *Name, int CharHeight)
|
||||||
{
|
{
|
||||||
cFont *f = CreateFont(Name, constrain(CharHeight, MINFONTSIZE, MAXFONTSIZE));
|
|
||||||
if (!f || !f->Height())
|
|
||||||
f = new cDummyFont;
|
|
||||||
delete fonts[Font];
|
delete fonts[Font];
|
||||||
fonts[Font] = f;
|
fonts[Font] = CreateFont(Name, constrain(CharHeight, MINFONTSIZE, MAXFONTSIZE));
|
||||||
}
|
}
|
||||||
|
|
||||||
const cFont *cFont::GetFont(eDvbFont Font)
|
const cFont *cFont::GetFont(eDvbFont Font)
|
||||||
@ -423,9 +423,10 @@ const cFont *cFont::GetFont(eDvbFont Font)
|
|||||||
cFont *cFont::CreateFont(const char *Name, int CharHeight, int CharWidth)
|
cFont *cFont::CreateFont(const char *Name, int CharHeight, int CharWidth)
|
||||||
{
|
{
|
||||||
cString fn = GetFontFileName(Name);
|
cString fn = GetFontFileName(Name);
|
||||||
if (*fn)
|
cFont *f = *fn ? new cFreetypeFont(fn, CharHeight, CharWidth) : NULL;
|
||||||
return new cFreetypeFont(fn, CharHeight, CharWidth);
|
if (!f || !f->Height())
|
||||||
return NULL;
|
f = new cDummyFont(CharHeight);
|
||||||
|
return f;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cFont::GetAvailableFontNames(cStringList *FontNames, bool Monospaced)
|
bool cFont::GetAvailableFontNames(cStringList *FontNames, bool Monospaced)
|
||||||
|
4
font.h
4
font.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: font.h 2.7 2013/02/17 13:17:42 kls Exp $
|
* $Id: font.h 3.1 2014/01/07 12:11:55 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __FONT_H
|
#ifndef __FONT_H
|
||||||
@ -75,7 +75,7 @@ public:
|
|||||||
///< default width. Name is of the form "Family:Style", for instance
|
///< default width. Name is of the form "Family:Style", for instance
|
||||||
///< "Verdana:Bold Italic" or "Times New Roman". See GetAvailableFontNames()
|
///< "Verdana:Bold Italic" or "Times New Roman". See GetAvailableFontNames()
|
||||||
///< for how to get a list of all available font names.
|
///< for how to get a list of all available font names.
|
||||||
///< If the requested font can't be created, NULL is returned.
|
///< If the requested font can't be created, a dummy font is returned.
|
||||||
///< The caller must delete the font when it is no longer needed.
|
///< The caller must delete the font when it is no longer needed.
|
||||||
static bool GetAvailableFontNames(cStringList *FontNames, bool Monospaced = false);
|
static bool GetAvailableFontNames(cStringList *FontNames, bool Monospaced = false);
|
||||||
///< Queries the font configuration for a list of available font names,
|
///< Queries the font configuration for a list of available font names,
|
||||||
|
Loading…
Reference in New Issue
Block a user