diff options
author | anbr <vdr07@deltab.de> | 2009-06-04 16:07:16 +0200 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2009-06-04 16:07:16 +0200 |
commit | 5ef2e1726de737db6fb35912901b9c9d73a5014d (patch) | |
tree | 83be192e7847dfcb04b7544367aa6e744e591402 /setup.h | |
parent | 603be1f41b0703d35dba6ba512a0d0893a69ecb9 (diff) | |
download | vdr-plugin-imonlcd-5ef2e1726de737db6fb35912901b9c9d73a5014d.tar.gz vdr-plugin-imonlcd-5ef2e1726de737db6fb35912901b9c9d73a5014d.tar.bz2 |
add eexit mode with setup wakeup time and showing clock.
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -23,7 +23,8 @@ enum eOnExitMode { ,eOnExitMode_SHOWCLOCK = 1 /**< Show the big clock */ ,eOnExitMode_BLANKSCREEN = 2 /**< Blank the device completely */ ,eOnExitMode_NEXTTIMER = 3 /**< Show next active timer */ - ,eOnExitMode_LASTITEM = 3 + ,eOnExitMode_WAKEUP = 4 /**< Show the big clock and wakeup on next active timer */ + ,eOnExitMode_LASTITEM = 4 }; struct cIMonSetup @@ -37,6 +38,8 @@ struct cIMonSetup char m_szFont[256]; + int m_nWakeup; + cIMonSetup(void); cIMonSetup(const cIMonSetup& x); cIMonSetup& operator = (const cIMonSetup& x); |