mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#ifndef __HELPERS_H
|
|
#define __HELPERS_H
|
|
|
|
#include <vdr/osd.h>
|
|
#include <vdr/plugin.h>
|
|
#include "../config.h"
|
|
|
|
cPlugin *GetScraperPlugin(void);
|
|
|
|
cSize ScaleToFit(int widthMax, int heightMax, int widthOriginal, int heightOriginal);
|
|
int Minimum(int a, int b, int c, int d, int e, int f);
|
|
std::string CutText(string &text, int width, string fontName, int fontSize);
|
|
std::string StrToLowerCase(string str);
|
|
bool isNumber(const string& s);
|
|
bool FileExists(const string &fullpath);
|
|
bool FileExists(const string &path, const string &name, const string &ext);
|
|
bool FolderExists(const string &path);
|
|
bool FirstFileInFolder(string &path, string &extension, string &fileName);
|
|
|
|
string <rim(string &s);
|
|
string &rtrim(string &s);
|
|
string &trim(string &s);
|
|
|
|
class splitstring : public std::string {
|
|
std::vector<std::string> flds;
|
|
public:
|
|
splitstring(const char *s) : std::string(s) { };
|
|
std::vector<std::string>& split(char delim, int rep=0);
|
|
};
|
|
|
|
class cStopWatch {
|
|
private:
|
|
uint64_t start;
|
|
uint64_t last;
|
|
public:
|
|
cStopWatch(const char* message = NULL);
|
|
~cStopWatch(void) {};
|
|
void Report(const char* message);
|
|
void Stop(const char* message);
|
|
};
|
|
|
|
string GetScreenResolutionString(int width, int height, bool *isHD);
|
|
string GetScreenAspectString(double aspect, bool *isWideScreen);
|
|
|
|
#endif // __HELPERS_H
|