diff options
author | Mitchm <Mitchm at vdrportal.de> | 2010-01-15 20:03:00 +0100 |
---|---|---|
committer | Mitchm <Mitchm at vdrportal.de> | 2010-01-15 20:03:00 +0100 |
commit | 5fa74fe306770d90ce3b7e52a0c420397d4c9c83 (patch) | |
tree | 8131bacf7b93b90642f55a4369f1ce0787617030 /osd.h | |
parent | 15f8e9b463ac432693b114c9b9f40a2155ae9dfb (diff) | |
download | vdr-plugin-osdpip-5fa74fe306770d90ce3b7e52a0c420397d4c9c83.tar.gz vdr-plugin-osdpip-5fa74fe306770d90ce3b7e52a0c420397d4c9c83.tar.bz2 |
Release version 0.0.10av0.0.10a
- added support for VDR 1.7.x
- added PIP while replaying
- added italian translations (thanks to Diego Pierotto)
Diffstat (limited to 'osd.h')
-rw-r--r-- | osd.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -21,7 +21,8 @@ typedef enum _ePipMode { pipModeNormal, pipModeMoving, - pipModeZapping + pipModeZapping, + pipModeReplay } ePipMode; class cRingBufferFrame; @@ -56,6 +57,7 @@ private: void Stop(void); void SwapChannels(void); void SwitchOsdPipChan(int i); + void StopReplay(); protected: virtual void Action(void); virtual void ChannelSwitch(const cDevice * device, int channelNumber); @@ -64,7 +66,6 @@ protected: public: cOsdPipObject(cDevice *Device, const cChannel *Channel); virtual ~cOsdPipObject(void); - virtual void Show(void); eOSState ProcessKey(eKeys k); }; |