mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
17 lines
446 B
C++
17 lines
446 B
C++
#ifndef __SKINDESIGNER_SETUP_H
|
|
#define __SKINDESIGNER_SETUP_H
|
|
|
|
#include "config.h"
|
|
|
|
class cSkinDesignerSetup : public cMenuSetupPage {
|
|
public:
|
|
cSkinDesignerSetup(void);
|
|
virtual ~cSkinDesignerSetup();
|
|
private:
|
|
cDesignerConfig data;
|
|
const char *menuDisplayStyle[2];
|
|
void Setup(void);
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
virtual void Store(void);
|
|
};
|
|
#endif //__SKINDESIGNER_SETUP_H
|