summaryrefslogtreecommitdiff
path: root/skins.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-05 15:09:51 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-05 15:09:51 +0100
commitc5a5f098453635e142f936de0b2d3378517d3fc2 (patch)
treebd9cc5df1e73d6efb6da82887d60884fa2378982 /skins.c
parent36b720b1cfc3e21acafc543bed68bb67197b9b33 (diff)
downloadvdr-c5a5f098453635e142f936de0b2d3378517d3fc2.tar.gz
vdr-c5a5f098453635e142f936de0b2d3378517d3fc2.tar.bz2
Added cSkin::GetTextAreaWidth() and cSkin::GetTextAreaFont()1.3.42
Diffstat (limited to 'skins.c')
-rw-r--r--skins.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/skins.c b/skins.c
index e65d2902..0952b118 100644
--- a/skins.c
+++ b/skins.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skins.c 1.7 2006/01/08 11:40:18 kls Exp $
+ * $Id: skins.c 1.8 2006/02/05 14:53:04 kls Exp $
*/
#include "skins.h"
@@ -108,6 +108,16 @@ const char *cSkinDisplayMenu::GetTabbedText(const char *s, int Tab)
return buffer;
}
+int cSkinDisplayMenu::GetTextAreaWidth(void) const
+{
+ return 0;
+}
+
+const cFont *cSkinDisplayMenu::GetTextAreaFont(bool) const
+{
+ return NULL;
+}
+
// --- cSkinDisplayReplay::cProgressBar --------------------------------------
cSkinDisplayReplay::cProgressBar::cProgressBar(int Width, int Height, int Current, int Total, const cMarks *Marks, tColor ColorSeen, tColor ColorRest, tColor ColorSelected, tColor ColorMark, tColor ColorCurrent)