diff options
Diffstat (limited to 'hlsPlayerControl.h')
-rw-r--r-- | hlsPlayerControl.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hlsPlayerControl.h b/hlsPlayerControl.h new file mode 100644 index 0000000..934feff --- /dev/null +++ b/hlsPlayerControl.h @@ -0,0 +1,27 @@ +#ifndef HLSPLAYERCONTROL_H +#define HLSPLAYERCONTROL_H + +#include <vdr/player.h> +#include <vdr/tools.h> + +#include "hlsPlayer.h" + +class cHlsPlayerControl : public cControl +{ +private: + cHlsPlayer* m_pPlayer; + std::string m_title; + +public: + cHlsPlayerControl(cHlsPlayer* Player, std::string title); + virtual ~cHlsPlayerControl(); + + virtual void Show(void); + virtual void Hide(void); + + virtual cString GetHeader(void); + //virtual eOSState ProcessKey(eKeys Key); + +}; + +#endif // HLSPLAYERCONTROL_H |