summaryrefslogtreecommitdiff
path: root/hlsPlayerControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'hlsPlayerControl.h')
-rw-r--r--hlsPlayerControl.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/hlsPlayerControl.h b/hlsPlayerControl.h
index 934feff..36c23ee 100644
--- a/hlsPlayerControl.h
+++ b/hlsPlayerControl.h
@@ -9,8 +9,13 @@
class cHlsPlayerControl : public cControl
{
private:
- cHlsPlayer* m_pPlayer;
+ cHlsPlayer* player;
std::string m_title;
+
+ bool visible;
+
+protected:
+ //void ShowMode();
public:
cHlsPlayerControl(cHlsPlayer* Player, std::string title);
@@ -20,7 +25,14 @@ public:
virtual void Hide(void);
virtual cString GetHeader(void);
- //virtual eOSState ProcessKey(eKeys Key);
+ virtual eOSState ProcessKey(eKeys Key);
+
+ bool Active(void);
+
+ void Pause(void);
+ void Play(void);
+ void Stop(void);
+
};