mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
31 lines
626 B
C++
31 lines
626 B
C++
#ifndef __TEMPLATEVIEWTAB_H
|
|
#define __TEMPLATEVIEWTAB_H
|
|
|
|
#include <iostream>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <set>
|
|
|
|
#include "templatepixmap.h"
|
|
|
|
using namespace std;
|
|
|
|
// --- cTemplateViewTab -------------------------------------------------------------
|
|
|
|
class cTemplateViewTab : public cTemplatePixmap {
|
|
private:
|
|
int scrollStep;
|
|
public:
|
|
cTemplateViewTab(void);
|
|
~cTemplateViewTab(void);
|
|
int GetScrollStep(void);
|
|
string GetName(void);
|
|
void SetName(string trans);
|
|
void Debug(void);
|
|
};
|
|
|
|
#endif //__TEMPLATEVIEWTAB_H
|