blob: 0a4360033360b116f3d6f5c8eb17898c365b5fed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#ifndef CONFIG_H
#define CONFIG_H
#include <Poco/UUID.h>
#include <Poco/UUIDGenerator.h>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
//VDR
#include <vdr/osd.h>
#include <vdr/menuitems.h>
/// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name
/// for the distribution archive.
static const char *const VERSION = "0.0.1"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
;
#define STRING_SIZE 256
class Config
{
public:
static Config& GetInstance() {
static Config instance;
return instance;
}
std::string s_username;
std::string s_password;
bool HideMainMenuEntry;
std::string GetUUID();
void SetUUID(const char* uuid);
std::string GetHostname();
std::string GetLanguage();
std::string GetUsername();
std::string GetPassword();
private:
Config();
std::string s_uuid;
std::string s_hostname;
};
//////////////////////////////////////////////////////////////////////////////
// cMenuSetupPage
//////////////////////////////////////////////////////////////////////////////
/**
** Play plugin menu setup page class.
*/
class cMyMenuSetupPage:public cMenuSetupPage
{
protected:
char Username[STRING_SIZE];
char Password[STRING_SIZE];
char Uuid[STRING_SIZE];
virtual void Store(void);
public:
cMyMenuSetupPage(void);
virtual eOSState ProcessKey(eKeys); // handle input
};
#endif // CONFIG_H
|