diff options
author | anbr <vdr07@deltab.de> | 2009-09-29 20:24:09 +0200 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2009-09-29 20:24:09 +0200 |
commit | 3c26d247ecdba709cfa3cf22a53b4626ee0b88e0 (patch) | |
tree | 8a5daa4d65fe43a0f2805af5f8cd165de54bfee8 /watch.h | |
parent | 877e98b09edd13fabe51c39fa984e1f04ad7b8ba (diff) | |
download | vdr-plugin-imonlcd-3c26d247ecdba709cfa3cf22a53b4626ee0b88e0.tar.gz vdr-plugin-imonlcd-3c26d247ecdba709cfa3cf22a53b4626ee0b88e0.tar.bz2 |
Add mode to show information on two lines provided by Sven (cokker) (Feature #161)
Diffstat (limited to 'watch.h')
-rw-r--r-- | watch.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -115,8 +115,10 @@ private: eReplayMode m_eReplayMode; cString* replayTitle; - cString* replayShortTitle; cString* replayTitleLast; + + time_t tsCurrentLast; + cString* currentTime; protected: virtual void Action(void); bool Program(); @@ -124,6 +126,7 @@ protected: bool RenderScreen(); eReplayState ReplayMode() const; bool ReplayPosition(int ¤t, int &total) const; + bool CurrentTime(); public: ciMonWatch(); virtual ~ciMonWatch(); @@ -140,7 +143,7 @@ public: void OsdCurrentItem(const char *sz); void OsdStatusMessage(const char *sz); - virtual bool SetFont(const char *szFont); + virtual bool SetFont(const char *szFont, int bTwoLineMode); eIconState ForceIcon(unsigned int nIcon, eIconState nState); }; |