From 54d069c95c546d6b12f6effc1af7a0274b7c31e4 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 23 Jun 2002 18:00:00 +0200 Subject: Version 1.1.4 - Added Hungarian language texts (thanks to Istvan Koenigsberger and Guido Josten). - Activated cutting. - Activated 'Transfer Mode'. - Moved handling of the Menu key entirely into vdr.c. - Switched VDR's own player to the new cPlayer/cControl structures. - Switched handling 'Transfer Mode' to the new cPlayer/cControl structures. - The following limitations apply to this version: + The '-a' option (for Dolby Digital audio) doesn't work yet. + Switching between different language tracks doesn't work yet. --- player.h | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'player.h') diff --git a/player.h b/player.h index 1221c24..51265f3 100644 --- a/player.h +++ b/player.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: player.h 1.1 2002/06/16 11:52:45 kls Exp $ + * $Id: player.h 1.4 2002/06/23 12:56:38 kls Exp $ */ #ifndef __PLAYER_H @@ -40,12 +40,24 @@ protected: public: cPlayer(void); virtual ~cPlayer(); + bool IsAttached(void) { return device != NULL; } }; class cControl : public cOsdObject { +private: + static cControl *control; + bool attached; + bool hidden; +protected: + cPlayer *player; public: - cControl(void); + cControl(cPlayer *Player, bool Hidden = false); virtual ~cControl(); + virtual void Hide(void) = 0; + static void Launch(cControl *Control); + static void Attach(void); + static void Shutdown(void); + static cControl *Control(void); }; #endif //__PLAYER_H -- cgit v1.2.3