summaryrefslogtreecommitdiff
path: root/config.cpp
blob: 3bb3ead00e569904836dba5d7d7c08bf0f4bc146 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
 * config.c
 *
 * See the README file for copyright information and how to reach the author.
 *
 * $Id: config.c,v 1.11 2005/01/02 12:19:32 schmitzj Exp $
 *
 */

#include "config.h"
#include "magazine.h"

#include <getopt.h>
#include <unistd.h>
#include <vdr/menuitems.h>

tvonscreenConfig tvonscreenCfg;

#if VDRVERSNUM < 10307
class cMenuEditTimeItem : public cMenuEditItem {
protected:
  int *value;
  int hh, mm;
  int pos;
  virtual void Set(void);
public:
  cMenuEditTimeItem(const char *Name, int *Value);
  virtual eOSState ProcessKey(eKeys Key);
  };
#endif

tvonscreenConfig::tvonscreenConfig(void)
{
	showLogos=false;
	XLfonts=true;
	noInfoLine=false;
	showChannels=true;
#if VDRVERSNUM >= 10307
	bwlogos=false;
#else
	bwlogos=true;
#endif
	colorworkaround=true;

	usertime1=1200;
	usertime2=1800;
	usertime3=2015;
	thenshownextday=true;
	showsearchinitiator=true;
	
	logos=NULL;
	vdradminfile=NULL;
}
tvonscreenConfig::~tvonscreenConfig()
{
	if (logos)
		free(logos);
	if (vdradminfile)
		free(vdradminfile);
}

bool tvonscreenConfig::SetupParse(const char *Name, const char *Value)
{
	if      (strcmp(Name,"showLogos")==0) showLogos = atoi(Value);
	else if (strcmp(Name,"XLfonts")==0) XLfonts = atoi(Value);
	else if (strcmp(Name,"noInfoLine")==0) noInfoLine = atoi(Value);
	else if (strcmp(Name,"showChannels")==0) showChannels = atoi(Value);
	else if (strcmp(Name,"bwlogos")==0) bwlogos = atoi(Value);
	else if (strcmp(Name,"colorworkaround")==0) colorworkaround = atoi(Value);
	else if (strcmp(Name,"usertime1")==0) usertime1 = atoi(Value);
	else if (strcmp(Name,"usertime2")==0) usertime2 = atoi(Value);
	else if (strcmp(Name,"usertime3")==0) usertime3 = atoi(Value);
	else if (strcmp(Name,"thenshownextday")==0) thenshownextday = atoi(Value);
	else if (strcmp(Name,"showsearchinitiator")==0) showsearchinitiator = atoi(Value);
	else 
		return false;

#if VDRVERSNUM < 10307
	bwlogos=true;
#endif
	return true;
}
const char *tvonscreenConfig::CommandLineHelp(void)
{
  // Return a string that describes all known command line options.
	return "  -l PathToLogos\n  --logos=PathToLogos\n  -v vdradmind.at\n  --vdradminfile=vdradmind.at\n";
}

bool tvonscreenConfig::ProcessArgs(int argc, char *argv[])
{ 
	static struct option long_options[] = {
		{ "logos",       required_argument, NULL, 'l' },
		{ "vdradminfile",required_argument, NULL, 'v' },
		{ NULL }
	};

	bool retval=true;
	int c;
	while ((c = getopt_long(argc, argv, "l:v:", long_options, NULL)) != -1)
	{
		switch (c)
		{
			case 'l': 
				if (logos)
				{
					free(logos);
					logos=NULL;
				}
				logos = strdup(optarg);
				retval=true;
				break;
			case 'v':
				if (vdradminfile)
				{
					free(vdradminfile);
					vdradminfile=NULL;
				}
				vdradminfile = strdup(optarg);
				retval=true;
				break;
			default:  
				break;
		}
	}
	return retval;
}

// ----------------------------------------------------------------------

tvonscreenConfigPage::tvonscreenConfigPage(void) : cMenuSetupPage()
{
	m_NewConfig = tvonscreenCfg;

#if TL_YSTART == 48
	Add(new cMenuEditBoolItem(tr("show channel logos"),
			&m_NewConfig.showLogos));
	Add(new cMenuEditBoolItem(tr("show channel names"),
			&m_NewConfig.showChannels));
	Add(new cMenuEditBoolItem(tr("show logos in black&white"),
			&m_NewConfig.bwlogos));
	Add(new cMenuEditBoolItem(tr("enable color problem work around"),
			&m_NewConfig.colorworkaround));
#endif
	Add(new cMenuEditBoolItem(tr("use XL fonts"),
			&m_NewConfig.XLfonts));
	Add(new cMenuEditBoolItem(tr("hide info line"),
			&m_NewConfig.noInfoLine));

	Add(new cMenuEditTimeItem(tr("user point in time 1 (Key 4)"),
			&m_NewConfig.usertime1));
	Add(new cMenuEditTimeItem(tr("user point in time 2 (Key 5)"),
			&m_NewConfig.usertime2));
	Add(new cMenuEditTimeItem(tr("user point in time 3 (Key 6)"),
			&m_NewConfig.usertime3));

	Add(new cMenuEditBoolItem(tr("jump to next day point if ago"),
			&m_NewConfig.thenshownextday));

	Add(new cMenuEditBoolItem(tr("Show search item itself"),
			&m_NewConfig.showsearchinitiator));


}

tvonscreenConfigPage::~tvonscreenConfigPage()
{
}

void tvonscreenConfigPage::Store(void)
{
	SetupStore("showLogos", m_NewConfig.showLogos);
	SetupStore("XLfonts", m_NewConfig.XLfonts);
	SetupStore("noInfoLine", m_NewConfig.noInfoLine);
	SetupStore("showChannels", m_NewConfig.showChannels);
	SetupStore("bwlogos", m_NewConfig.bwlogos);
	SetupStore("colorworkaround", m_NewConfig.colorworkaround);
	SetupStore("usertime1", m_NewConfig.usertime1);
	SetupStore("usertime2", m_NewConfig.usertime2);
	SetupStore("usertime3", m_NewConfig.usertime3);
	SetupStore("thenshownextday", m_NewConfig.thenshownextday);
	SetupStore("showsearchinitiator", m_NewConfig.showsearchinitiator);

	tvonscreenCfg = m_NewConfig;
}