diff options
Diffstat (limited to 'watch.h')
-rw-r--r-- | watch.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -67,6 +67,14 @@ enum eAudioMode { eAudioWAV = 1 << 6 }; +enum eIconState { + eIconStateQuery, + eIconStateOn, + eIconStateOff, + eIconStateAuto +}; + + class ciMonWatch : public ciMonLCD , protected cThread { @@ -85,6 +93,10 @@ private: int m_nCardIsRecording[16]; + unsigned int m_nIconsForceOn; + unsigned int m_nIconsForceOff; + unsigned int m_nIconsForceMask; + const cControl *m_pControl; tChannelID chID; @@ -129,6 +141,8 @@ public: void OsdStatusMessage(const char *sz); virtual bool SetFont(const char *szFont); + + eIconState ForceIcon(unsigned int nIcon, eIconState nState); }; #endif |