mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 15:58:31 +00:00
initial commit version 0.0.1
This commit is contained in:
27
views/displaymenutabview.h
Normal file
27
views/displaymenutabview.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef __DISPLAYMENUTABVIEW_H
|
||||
#define __DISPLAYMENUTABVIEW_H
|
||||
|
||||
#include "../libtemplate/template.h"
|
||||
#include "view.h"
|
||||
|
||||
class cDisplayMenuTabView : public cView {
|
||||
private:
|
||||
map < string, string > *stringTokens;
|
||||
map < string, int > *intTokens;
|
||||
map < string, vector< map< string, string > > > *loopTokens;
|
||||
void Action(void);
|
||||
public:
|
||||
cDisplayMenuTabView(cTemplateViewTab *tmplTab);
|
||||
virtual ~cDisplayMenuTabView();
|
||||
void SetTokens(map < string, int > *intTokens, map < string, string > *stringTokens, map < string, vector< map< string, string > > > *loopTokens);
|
||||
void Clear(void);
|
||||
void CreateTab(void);
|
||||
void Render(void);
|
||||
bool KeyUp(void);
|
||||
bool KeyDown(void);
|
||||
bool KeyLeft(void);
|
||||
bool KeyRight(void);
|
||||
void GetScrollbarPosition(int &barTop, int &barHeight);
|
||||
};
|
||||
|
||||
#endif //__DISPLAYMENUTABVIEW_H
|
||||
Reference in New Issue
Block a user