summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-07-27 11:51:42 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-07-27 11:51:42 +0200
commitd008680ad78832701d59d54733d302c0287bc879 (patch)
treeccc96e0337f835041be1e8f79d7b82eca48da9ac /config.h
parent81919a6647b6c02e8ea368ae0c88db367341c769 (diff)
downloadvdr-d008680ad78832701d59d54733d302c0287bc879.tar.gz
vdr-d008680ad78832701d59d54733d302c0287bc879.tar.bz2
Made the width and height of the OSD configurable
Diffstat (limited to 'config.h')
-rw-r--r--config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/config.h b/config.h
index ca4782bf..572988eb 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.53 2001/07/27 10:42:30 kls Exp $
+ * $Id: config.h 1.54 2001/07/27 11:28:49 kls Exp $
*/
#ifndef __CONFIG_H
@@ -26,6 +26,11 @@
#define MAXPRIORITY 99
#define MAXLIFETIME 99
+#define MINOSDWIDTH 40
+#define MAXOSDWIDTH 56
+#define MINOSDHEIGHT 12
+#define MAXOSDHEIGHT 21
+
enum eKeys { // "Up" and "Down" must be the first two keys!
kUp,
kDown,
@@ -278,6 +283,7 @@ public:
int DefaultPriority, DefaultLifetime;
int VideoFormat;
int ChannelInfoPos;
+ int OSDwidth, OSDheight;
int CurrentChannel;
cSetup(void);
bool Load(const char *FileName);