vdr 2.6.1
skinsttng.h
Go to the documentation of this file.
1/*
2 * skinsttng.h: A VDR skin with ST:TNG Panels
3 *
4 * See the main source file 'vdr.c' for copyright information and
5 * how to reach the author.
6 *
7 * $Id: skinsttng.h 1.2 2005/01/02 14:39:29 kls Exp $
8 */
9
10#ifndef __SKINSTTNG_H
11#define __SKINSTTNG_H
12
13#include "skins.h"
14
15class cSkinSTTNG : public cSkin {
16public:
18 virtual const char *Description(void);
19 virtual cSkinDisplayChannel *DisplayChannel(bool WithInfo);
21 virtual cSkinDisplayReplay *DisplayReplay(bool ModeOnly);
23 virtual cSkinDisplayTracks *DisplayTracks(const char *Title, int NumTracks, const char * const *Tracks);
25 };
26
27#endif //__SKINSTTNG_H
virtual const char * Description(void)
Returns a user visible, single line description of this skin, which may consist of arbitrary text and...
virtual cSkinDisplayMessage * DisplayMessage(void)
Creates and returns a new object for displaying a message.
virtual cSkinDisplayMenu * DisplayMenu(void)
Creates and returns a new object for displaying a menu.
virtual cSkinDisplayReplay * DisplayReplay(bool ModeOnly)
Creates and returns a new object for displaying replay progress.
virtual cSkinDisplayChannel * DisplayChannel(bool WithInfo)
Creates and returns a new object for displaying the current channel.
virtual cSkinDisplayTracks * DisplayTracks(const char *Title, int NumTracks, const char *const *Tracks)
Creates and returns a new object for displaying the available tracks.
virtual cSkinDisplayVolume * DisplayVolume(void)
Creates and returns a new object for displaying the current volume.
cSkinSTTNG(void)