diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-16 10:35:36 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-16 10:35:36 +0200 |
commit | 5d99df7b7760c4a2b497c737a15b609008f6d56d (patch) | |
tree | a342f2f7465a73fe2bd63848d87566af8d646dd3 /skinsttng.h | |
parent | 7aab06d8b1c6de59d06756d44c631984acd299b3 (diff) | |
download | vdr-5d99df7b7760c4a2b497c737a15b609008f6d56d.tar.gz vdr-5d99df7b7760c4a2b497c737a15b609008f6d56d.tar.bz2 |
Implemented 'skins' and 'themes'
Diffstat (limited to 'skinsttng.h')
-rw-r--r-- | skinsttng.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/skinsttng.h b/skinsttng.h new file mode 100644 index 00000000..82b25995 --- /dev/null +++ b/skinsttng.h @@ -0,0 +1,26 @@ +/* + * skinsttng.h: A VDR skin with ST:TNG Panels + * + * See the main source file 'vdr.c' for copyright information and + * how to reach the author. + * + * $Id: skinsttng.h 1.1 2004/04/18 09:38:47 kls Exp $ + */ + +#ifndef __SKINSTTNG_H +#define __SKINSTTNG_H + +#include "skins.h" + +class cSkinSTTNG : public cSkin { +public: + cSkinSTTNG(void); + virtual const char *Description(void); + virtual cSkinDisplayChannel *DisplayChannel(bool WithInfo); + virtual cSkinDisplayMenu *DisplayMenu(void); + virtual cSkinDisplayReplay *DisplayReplay(bool ModeOnly); + virtual cSkinDisplayVolume *DisplayVolume(void); + virtual cSkinDisplayMessage *DisplayMessage(void); + }; + +#endif //__SKINSTTNG_H |