mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
29 lines
764 B
C++
29 lines
764 B
C++
#ifndef __VIEWDISPLAYTRACKS_H
|
|
#define __VIEWDISPLAYTRACKS_H
|
|
|
|
#include "view.h"
|
|
|
|
class cViewTracks : public cView {
|
|
private:
|
|
cViewListAudioTracks *viewList;
|
|
cVeDtBackground *veBackground;
|
|
cVeDtHeader *veHeader;
|
|
bool change;
|
|
void SetViewElements(void);
|
|
void SetViewElementObjects(void);
|
|
void ClearVariables(void);
|
|
public:
|
|
cViewTracks(void);
|
|
virtual ~cViewTracks(void);
|
|
void Close(void);
|
|
void AddViewList(cViewList *viewList);
|
|
void PreCache(void);
|
|
void SetTitle(const char *title);
|
|
void SetNumtracks(int numTracks);
|
|
void SetTracks(const char * const *tracks);
|
|
void SetAudiochannel(int audioChannel);
|
|
void SetCurrentTrack(int index);
|
|
void Flush(bool animFlush);
|
|
};
|
|
|
|
#endif //__VIEWDISPLAYTRACKS_H
|