summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2009-05-30 15:20:13 +0200
committeranbr <vdr07@deltab.de>2009-05-30 15:20:13 +0200
commite35905da3b8f38ef246df5316f56ae623fd3f1db (patch)
tree654c1b787662e6a47607ea7b70133f43a6270ced /setup.h
parentc1321723e80c9bf20e27be5e670578808581fee3 (diff)
downloadvdr-plugin-imonlcd-e35905da3b8f38ef246df5316f56ae623fd3f1db.tar.gz
vdr-plugin-imonlcd-e35905da3b8f38ef246df5316f56ae623fd3f1db.tar.bz2
Show next timer on exit (Feature #124)
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/setup.h b/setup.h
index 92db621..00074f2 100644
--- a/setup.h
+++ b/setup.h
@@ -17,6 +17,15 @@
#include <vdr/menuitems.h>
#define memberof(x) (sizeof(x)/sizeof(*x))
+enum eOnExitMode {
+ eOnExitMode_FIRSTITEM = 0
+ ,eOnExitMode_SHOWMSG = 0 /**< Do nothing - just leave the "last" message there */
+ ,eOnExitMode_SHOWCLOCK = 1 /**< Show the big clock */
+ ,eOnExitMode_BLANKSCREEN = 2 /**< Blank the device completely */
+ ,eOnExitMode_NEXTTIMER = 3 /**< Show next active timer */
+ ,eOnExitMode_LASTITEM = 3
+};
+
struct cIMonSetup
{
int m_nOnExit;