vdr-plugin-skindesigner/config.h

79 lines
1.9 KiB
C
Raw Normal View History

2014-09-27 09:25:14 +02:00
#ifndef __DESIGNER_CONFIG_H
#define __DESIGNER_CONFIG_H
#include <string>
#include <vector>
#include <map>
#include <vdr/tools.h>
#include <vdr/skins.h>
#include <vdr/plugin.h>
#include "libcore/fontmanager.h"
#include "libcore/imagecache.h"
class cDesignerConfig {
private:
cString CheckSlashAtEnd(std::string path);
bool epgImagePathSet;
bool skinPathSet;
bool logoPathSet;
cRect osdSize;
string osdSkin;
string osdTheme;
string fontFix;
string fontOsd;
string fontSml;
2014-09-27 09:25:14 +02:00
public:
cDesignerConfig();
~cDesignerConfig();
bool SetupParse(const char *Name, const char *Value);
void SetPathes(void);
2014-09-27 09:25:14 +02:00
void SetSkinPath(cString path);
void SetLogoPath(cString path);
2014-09-27 09:25:14 +02:00
void SetEpgImagePath(cString path);
void ReadSkins(void);
void InitSkinIterator(void) { skinIterator = skins.begin(); };
bool GetSkin(string &skin);
2014-09-27 09:25:14 +02:00
void SetChannelLogoSize(void);
void CheckDecimalPoint(void);
void SetSkin(void);
bool SkinChanged(void);
void SetOSDSize(void);
bool OsdSizeChanged(void);
void SetOSDFonts(void);
bool OsdFontsChanged(void);
2014-09-27 09:25:14 +02:00
cString logoExtension;
cString skinPath;
cString logoPath;
2014-09-27 09:25:14 +02:00
cString epgImagePath;
int numLogosPerSizeInitial;
int limitLogoCache;
int numLogosMax;
int debugImageLoading;
int logoWidth;
int logoHeight;
bool replaceDecPoint;
char decPoint;
vector<string> skins;
vector<string>::iterator skinIterator;
int rerunAmount;
int rerunDistance;
int rerunMaxChannel;
int blockFlush;
2014-09-27 09:25:14 +02:00
};
2014-09-27 09:25:14 +02:00
#ifdef DEFINE_CONFIG
bool firstDisplay = true;
cDesignerConfig config;
cFontManager *fontManager = NULL;
cImageCache *imgCache = NULL;
2014-09-27 09:25:14 +02:00
cTheme Theme;
#else
extern bool firstDisplay;
extern cDesignerConfig config;
extern cFontManager *fontManager;
extern cImageCache *imgCache;
extern cTheme Theme;
#endif
#endif //__DESIGNER_CONFIG_H