source: titan/titan/adjust.h @ 33085

Last change on this file since 33085 was 33085, checked in by Stephan, 8 years ago

text cleanup

File size: 21.4 KB
Line 
1#ifndef ADJUST_H
2#define ADJUST_H
3
4void screenadjust()
5{
6        int rcret = 0;
7        char* tmpstr = NULL;
8       
9        struct skin* adjust = getscreen("adjust");
10        struct skin* listbox = getscreennode(adjust, "listbox");
11        struct skin* volbartimeout = getscreennode(adjust, "volbartimeout");
12        struct skin* infobartimeout = getscreennode(adjust, "infobartimeout");
13        struct skin* infobarsleep = getscreennode(adjust, "infobarsleep");
14        struct skin* secondinfobar = getscreennode(adjust, "secondinfobar");
15        struct skin* spinnerspeed = getscreennode(adjust, "spinnerspeed");
16        struct skin* spinnertime = getscreennode(adjust, "spinnertime");
17        struct skin* hangtime = getscreennode(adjust, "hangtime");
18        struct skin* nozapclear = getscreennode(adjust, "nozapclear");
19        struct skin* fastzap = getscreennode(adjust, "fastzap");
20        struct skin* faststop = getscreennode(adjust, "faststop");
21        struct skin* dirsort = getscreennode(adjust, "dirsort");
22        struct skin* poweraktion = getscreennode(adjust, "poweraktion");
23        struct skin* frontpoweraktion = getscreennode(adjust, "frontpoweraktion");
24        struct skin* virtualzap = getscreennode(adjust, "virtualzap");
25        struct skin* fasttextrender = getscreennode(adjust, "fasttextrender");
26        struct skin* recsplitsize = getscreennode(adjust, "recsplitsize");
27        struct skin* recforerun = getscreennode(adjust, "recforerun");
28        struct skin* recoverrun = getscreennode(adjust, "recoverrun");
29        struct skin* skip13 = getscreennode(adjust, "skip13");
30        struct skin* skip46 = getscreennode(adjust, "skip46");
31        struct skin* skip79 = getscreennode(adjust, "skip79");
32        struct skin* playertype = getscreennode(adjust, "playertype");
33        struct skin* autochangechannelname = getscreennode(adjust, "autochangechannelname");
34        struct skin* def_rectimer_after = getscreennode(adjust, "def_rectimer_after");
35        struct skin* showchanneltimeline = getscreennode(adjust, "showchanneltimeline");
36        struct skin* screenanim = getscreennode(adjust, "screenanim");
37        struct skin* screenanimspeed = getscreennode(adjust, "screenanimspeed");
38        struct skin* channellistview = getscreennode(adjust, "channellistview");
39        struct skin* showlastpos = getscreennode(adjust, "showlastpos");
40        struct skin* recsync = getscreennode(adjust, "recsync");
41        struct skin* recordnamefmt = getscreennode(adjust, "recordnamefmt");
42        struct skin* newsletter = getscreennode(adjust, "newsletter");
43        struct skin* showhiddenfiles = getscreennode(adjust, "showhiddenfiles");
44        struct skin* expertmodus = getscreennode(adjust, "expertmodus");
45        struct skin* infobarprogram = getscreennode(adjust, "infobarprogram");
46        struct skin* crosscontrol = getscreennode(adjust, "crosscontrol");
47        struct skin* emucontrol = getscreennode(adjust, "emucontrol");
48        struct skin* minitv = getscreennode(adjust, "choiceminitv");
49        struct skin* usecec = getscreennode(adjust, "usecec");
50        struct skin* playerbuffersize = getscreennode(adjust, "playerbuffersize");
51        struct skin* playerbufferseektime = getscreennode(adjust, "playerbufferseektime");
52        struct skin* sataswitch = getscreennode(adjust, "sataswitch");
53        struct skin* dualboot = getscreennode(adjust, "dualboot");
54        struct skin* community_user = getscreennode(adjust, "community_user");
55        struct skin* community_pass = getscreennode(adjust, "community_pass");
56        struct skin* debuglevel = getscreennode(adjust, "debuglevel");
57
58        struct skin* tmp = NULL;
59
60        changeinput(volbartimeout, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10");
61        setchoiceboxselection(volbartimeout, getconfig("volbartimeout", NULL));
62
63        changeinput(infobartimeout, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n20\n30\n60\n10000");
64        setchoiceboxselection(infobartimeout, getconfig("infobartimeout", NULL));
65
66        changeinput(infobarsleep, "0\n1\n2\n3\n4\n5");
67        setchoiceboxselection(infobarsleep, getconfig("infobarsleep", NULL));
68
69        addchoicebox(secondinfobar, "0", _("no"));
70        addchoicebox(secondinfobar, "1", _("infobar"));
71        addchoicebox(secondinfobar, "2", _("epg"));
72        addchoicebox(secondinfobar, "3", _("Channel EPG"));
73        setchoiceboxselection(secondinfobar, getconfig("secondinfobar", NULL));
74
75        changeinput(spinnerspeed, "1\n3\n9\n12\n15\n18\n21\n24\n27\n30");
76        setchoiceboxselection(spinnerspeed, getconfig("spinnerspeed", NULL));
77
78        changeinput(spinnertime, "1\n2\n3\n4\n5\n6\n7\n8\n10000");
79        setchoiceboxselection(spinnertime, getconfig("spinnertime", NULL));
80
81        changeinput(hangtime, "5\n10\n15\n30\n60\n120\n10000");
82        setchoiceboxselection(hangtime, getconfig("hangtime", NULL));
83
84        addchoicebox(nozapclear, "0", _("no"));
85        addchoicebox(nozapclear, "1", _("yes"));
86        setchoiceboxselection(nozapclear, getconfig("nozapclear", NULL));
87
88        if(checkbox("ATEMIO7600") == 1)
89                fastzap->hidden = YES;
90        else
91                fastzap->hidden = NO;
92       
93        addchoicebox(fastzap, "0", _("no"));
94        addchoicebox(fastzap, "2", _("medium"));
95        addchoicebox(fastzap, "1", _("fast"));
96        setchoiceboxselection(fastzap, getconfig("fastzap", NULL));
97
98        addchoicebox(faststop, "0", _("no"));
99        addchoicebox(faststop, "1", _("yes"));
100        setchoiceboxselection(faststop, getconfig("faststop", NULL));
101
102        addchoicebox(dirsort, "0", _("alpha"));
103        addchoicebox(dirsort, "1", _("reverse alpha"));
104        addchoicebox(dirsort, "2", _("size"));
105        addchoicebox(dirsort, "3", _("reverse size"));
106        addchoicebox(dirsort, "4", _("date"));
107        addchoicebox(dirsort, "5", _("reverse date"));
108        setchoiceboxselection(dirsort, getconfig("dirsort", NULL));
109
110        addchoicebox(poweraktion, "0", _("Power Menu"));
111        addchoicebox(poweraktion, "1", _("Power Off"));
112        addchoicebox(poweraktion, "2", _("Standby"));
113        addchoicebox(poweraktion, "3", _("Restart"));
114        addchoicebox(poweraktion, "4", _("GUI Restart"));
115        setchoiceboxselection(poweraktion, getconfig("poweraktion", NULL));
116
117        addchoicebox(frontpoweraktion, "1", _("Power Off"));
118        addchoicebox(frontpoweraktion, "2", _("Standby"));
119        setchoiceboxselection(frontpoweraktion, getconfig("frontpoweraktion", NULL));
120
121        addchoicebox(virtualzap, "0", _("deaktiv"));
122        addchoicebox(virtualzap, "1", _("1 sec"));
123        addchoicebox(virtualzap, "2", _("2 sec"));
124        addchoicebox(virtualzap, "9999", _("endless"));
125        setchoiceboxselection(virtualzap, getconfig("virtualzap", NULL));
126       
127        addchoicebox(fasttextrender, "0", _("no"));
128        addchoicebox(fasttextrender, "1", _("yes"));
129        setchoiceboxselection(fasttextrender, getconfig("fasttextrender", NULL));
130
131        addchoicebox(recsplitsize, "0", _("deaktiv"));
132        addchoicebox(recsplitsize, "1", _("1 GB"));
133        addchoicebox(recsplitsize, "2", _("2 GB"));
134        addchoicebox(recsplitsize, "3", _("3 GB"));
135        addchoicebox(recsplitsize, "4", _("4 GB"));
136        setchoiceboxselection(recsplitsize, getconfig("recsplitsize", NULL));
137
138        changeinput(recforerun, "0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n15\n20\n25\n30\n35\n40\n45\n50\n55\n60");
139        setchoiceboxselection(recforerun, getconfig("recforerun", NULL));
140
141        changeinput(recoverrun, "0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n15\n20\n25\n30\n35\n40\n45\n50\n55\n60");
142        setchoiceboxselection(recoverrun, getconfig("recoverrun", NULL));
143
144        changeinput(skip13, "15\n20\n30\n45\n60\n90\n120\n180\n300\n600\n900\n1200");
145        setchoiceboxselection(skip13, getconfig("skip13", NULL));
146
147        changeinput(skip46, "15\n20\n30\n45\n60\n90\n120\n180\n300\n600\n900\n1200");
148        setchoiceboxselection(skip46, getconfig("skip46", NULL));
149
150        changeinput(skip79, "15\n20\n30\n45\n60\n90\n120\n180\n300\n600\n900\n1200");
151        setchoiceboxselection(skip79, getconfig("skip79", NULL));
152       
153        addchoicebox(playertype, "0", _("extern"));
154        addchoicebox(playertype, "1", _("intern"));
155        setchoiceboxselection(playertype, getconfig("playertype", NULL));
156       
157        addchoicebox(autochangechannelname, "0", _("no"));
158        addchoicebox(autochangechannelname, "1", _("yes"));
159        setchoiceboxselection(autochangechannelname, getconfig("autochangechannelname", NULL));
160
161        addchoicebox(def_rectimer_after, "0", _("auto"));
162        addchoicebox(def_rectimer_after, "1", _("nothing"));
163        addchoicebox(def_rectimer_after, "2", _("standby"));
164        addchoicebox(def_rectimer_after, "3", _("power off"));
165        setchoiceboxselection(def_rectimer_after, getconfig("def_rectimer_after", NULL));
166       
167        addchoicebox(showchanneltimeline, "0", _("no"));
168        addchoicebox(showchanneltimeline, "1", _("yes"));
169        setchoiceboxselection(showchanneltimeline, getconfig("showchanneltimeline", NULL));
170       
171        addchoicebox(screenanim, "0", _("no"));
172        addchoicebox(screenanim, "1", _("anim. width"));
173        addchoicebox(screenanim, "2", _("anim. height"));
174        addchoicebox(screenanim, "3", _("anim. both"));
175        setchoiceboxselection(screenanim, getconfig("screenanim", NULL));
176       
177        addchoicebox(screenanimspeed, "1", _("very fast"));
178        addchoicebox(screenanimspeed, "5", _("fast"));
179        addchoicebox(screenanimspeed, "10", _("normal"));
180        addchoicebox(screenanimspeed, "15", _("slow"));
181        addchoicebox(screenanimspeed, "20", _("very slow"));
182        setchoiceboxselection(screenanimspeed, getconfig("screenanimspeed", NULL));
183
184        addchoicebox(channellistview, "0", _("hidden"));
185        addchoicebox(channellistview, "1", _("deaktiv"));
186        setchoiceboxselection(channellistview, getconfig("channellistview", NULL));
187
188        addchoicebox(showlastpos, "0", _("no"));       
189        addchoicebox(showlastpos, "1", _("yes"));
190        setchoiceboxselection(showlastpos, getconfig("showlastpos", NULL));
191
192        addchoicebox(recsync, "0", _("no"));   
193        addchoicebox(recsync, "1", _("yes"));
194        setchoiceboxselection(recsync, getconfig("recsync", NULL));
195
196        addchoicebox(recordnamefmt, "0", _("channel-movie"));
197        addchoicebox(recordnamefmt, "1", _("movie-channel"));
198        setchoiceboxselection(recordnamefmt, getconfig("recordnamefmt", NULL));
199
200        addchoicebox(newsletter, "0", _("no"));
201        addchoicebox(newsletter, "1", _("yes"));
202        setchoiceboxselection(newsletter, getconfig("newsletter", NULL));
203
204        addchoicebox(showhiddenfiles, "0", _("no"));
205        addchoicebox(showhiddenfiles, "1", _("yes"));
206        setchoiceboxselection(showhiddenfiles, getconfig("showhiddenfiles", NULL));
207
208        addchoicebox(expertmodus, "0", _("no"));
209        addchoicebox(expertmodus, "10", _("yes"));
210        if(getconfigint("expertmodus", NULL) == 11)
211                addchoicebox(expertmodus, "11", _("expert (11)"));
212        setchoiceboxselection(expertmodus, getconfig("expertmodus", NULL));
213
214        addchoicebox(infobarprogram, "0", _("no"));
215        addchoicebox(infobarprogram, "1", _("yes"));
216        setchoiceboxselection(infobarprogram, getconfig("infobarprogram", NULL));
217
218        addchoicebox(crosscontrol, "0", _("no"));
219        addchoicebox(crosscontrol, "1", _("yes"));
220        addchoicebox(crosscontrol, "2", _("yes / vzap 1 sec"));
221        addchoicebox(crosscontrol, "3", _("yes / vzap 2 sec"));
222        addchoicebox(crosscontrol, "9999", _("yes / vzap endless"));
223        setchoiceboxselection(crosscontrol, getconfig("crosscontrol", NULL));
224
225        addchoicebox(emucontrol, "0", _("no"));
226        addchoicebox(emucontrol, "1", _("yes"));
227        setchoiceboxselection(emucontrol, getconfig("emucontrol", NULL));
228
229        addchoicebox(minitv, "0", _("no"));
230        addchoicebox(minitv, "1", _("yes"));
231        setchoiceboxselection(minitv, getconfig("minitv", NULL));
232
233        addchoicebox(usecec, "0", _("no"));
234        addchoicebox(usecec, "1", _("yes"));
235        setchoiceboxselection(usecec, getconfig("usecec", NULL));
236
237        if(!file_exist("/mnt/config/dualboot"))
238        {
239                addchoicebox(dualboot, "0", _("no"));
240                addchoicebox(dualboot, "1", _("yes"));
241        }
242        else
243        {
244                addchoicebox(dualboot, "1", _("yes"));
245                addchoicebox(dualboot, "0", _("no"));
246        }
247        setchoiceboxselection(dualboot, getconfig("dualboot", NULL));
248
249        changemask(community_user, "abcdefghijklmnopqrstuvwxyz");
250        changeinput(community_user, getconfig("community_user", NULL));
251
252//      changemask(community_pass, "abcdefghijklmnopqrstuvwxyz");
253//      changeinput(community_pass, getconfig("community_pass", NULL));
254        changemask(community_pass, "****");
255
256        if(getconfig("community_pass", NULL) != NULL && strlen(getconfig("community_pass", NULL)) != 32)
257                changeinput(community_pass, getconfig("community_pass", NULL));
258        else
259                changeinput(community_pass, "****");
260       
261
262// setdebuglevel
263#ifndef BETA
264        debuglevel->hidden = YES;
265#else
266        tmpstr = ostrcat("10 - ", _("Minimal"), 0, 0); 
267        addchoicebox(debuglevel, "10", tmpstr);
268        free(tmpstr), tmpstr = NULL;
269       
270        tmpstr = ostrcat("40 - ", _("TopfieldVFD"), 0, 0);     
271        addchoicebox(debuglevel, "40", tmpstr);
272        free(tmpstr), tmpstr = NULL;
273       
274        tmpstr = ostrcat("50 - ", _("MediaCenter"), 0, 0);     
275        addchoicebox(debuglevel, "50", tmpstr);
276        free(tmpstr), tmpstr = NULL;
277       
278        tmpstr = ostrcat("60 - ", _("Menulist"), 0, 0);
279        addchoicebox(debuglevel, "60", tmpstr);
280        free(tmpstr), tmpstr = NULL;
281       
282        tmpstr = ostrcat("70 - ", _("Networkbrowser"), 0, 0);   
283        addchoicebox(debuglevel, "70", tmpstr);
284        free(tmpstr), tmpstr = NULL;
285       
286        tmpstr = ostrcat("80 - ", _("Harddisk"), 0, 0);
287        addchoicebox(debuglevel, "80", tmpstr);
288        free(tmpstr), tmpstr = NULL;
289       
290        tmpstr = ostrcat("90 - ", _("Screensaver"), 0, 0);     
291        addchoicebox(debuglevel, "90", tmpstr);
292        free(tmpstr), tmpstr = NULL;
293       
294        tmpstr = ostrcat("99 - ", _("Tithek/HTTP Header"), 0, 0);       
295        addchoicebox(debuglevel, "99", tmpstr);
296        free(tmpstr), tmpstr = NULL;
297       
298        tmpstr = ostrcat("100 - ", _("Global"), 0, 0); 
299        addchoicebox(debuglevel, "100", tmpstr);
300        free(tmpstr), tmpstr = NULL;
301       
302        tmpstr = ostrcat("130 - ", _("TPK"), 0, 0);     
303        addchoicebox(debuglevel, "130", tmpstr);
304        free(tmpstr), tmpstr = NULL;
305       
306        tmpstr = ostrcat("133 - ", _("IMDbScan"), 0, 0);       
307        addchoicebox(debuglevel, "133", tmpstr);
308        free(tmpstr), tmpstr = NULL;
309       
310        tmpstr = ostrcat("150 - ", _("ePlayer"), 0, 0);
311        addchoicebox(debuglevel, "150", tmpstr);
312        free(tmpstr), tmpstr = NULL;
313       
314        tmpstr = ostrcat("199 - ", _("Community login"), 0, 0);
315        addchoicebox(debuglevel, "199", tmpstr);
316        free(tmpstr), tmpstr = NULL;
317       
318        tmpstr = ostrcat("200 - ", _("Tuning"), 0, 0); 
319        addchoicebox(debuglevel, "200", tmpstr);
320        free(tmpstr), tmpstr = NULL;
321       
322        tmpstr = ostrcat("250 - ", _("Stream/Record/Softcam"), 0, 0);   
323        addchoicebox(debuglevel, "250", tmpstr);
324        free(tmpstr), tmpstr = NULL;
325       
326        tmpstr = ostrcat("270 - ", _("EPG"), 0, 0);     
327        addchoicebox(debuglevel, "270", tmpstr);
328        free(tmpstr), tmpstr = NULL;
329       
330        tmpstr = ostrcat("300 - ", _("Radiotext"), 0, 0);       
331        addchoicebox(debuglevel, "300", tmpstr);
332        free(tmpstr), tmpstr = NULL;
333       
334        tmpstr = ostrcat("400 - ", _("Subtitle"), 0, 0);       
335        addchoicebox(debuglevel, "400", tmpstr);
336        free(tmpstr), tmpstr = NULL;
337       
338        tmpstr = ostrcat("500 - ", _("Scan"), 0, 0);   
339        addchoicebox(debuglevel, "500", tmpstr);
340        free(tmpstr), tmpstr = NULL;
341       
342        tmpstr = ostrcat("777 - ", _("MediaDB"), 0, 0);
343        addchoicebox(debuglevel, "777", tmpstr);
344        free(tmpstr), tmpstr = NULL;
345       
346        tmpstr = ostrcat("900 - ", _("Mutex"), 0, 0);   
347        addchoicebox(debuglevel, "900", tmpstr);
348        free(tmpstr), tmpstr = NULL;
349       
350        tmpstr = ostrcat("1000 - ", _("Function"), 0, 0);       
351        addchoicebox(debuglevel, "1000", tmpstr);
352        free(tmpstr), tmpstr = NULL;
353       
354        setchoiceboxselection(debuglevel, getconfig("debuglevel", NULL));
355#endif
356
357
358#ifdef MIPSEL
359        dualboot->hidden = NO;
360        frontpoweraktion->hidden = NO;
361#else
362        dualboot->hidden = YES;
363        frontpoweraktion->hidden = YES;
364#endif
365
366        if(!file_exist("/usr/bin/enigma2"))
367                dualboot->hidden = YES;
368
369        if(status.security == 0 || checkemu() == 0)
370                emucontrol->hidden = YES;
371        else
372                emucontrol->hidden = NO;
373        if(checkbox("ATEMIO510") == 1 || checkbox("UFS912") == 1 || checkbox("UFS913") == 1 || checkbox("ATEMIO7600") == 1 || checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1 || checkbox("SPARK") == 1 || checkbox("SPARK7162") == 1)
374                usecec->hidden = NO;
375        else
376                usecec->hidden = YES;
377
378        if(checkbox("ATEMIO7600") == 1)
379        {
380                sataswitch->hidden = NO;
381                addchoicebox(sataswitch, "0", _("extern"));
382                addchoicebox(sataswitch, "1", _("intern"));
383                tmpstr = getsataswitch();
384                setchoiceboxselection(sataswitch, tmpstr);
385                free(tmpstr); tmpstr = NULL;
386        }
387        else
388                sataswitch->hidden = YES;
389       
390        addchoicebox(playerbuffersize, "0", _("no"));
391        addchoicebox(playerbuffersize, "524288", "512KB");
392        addchoicebox(playerbuffersize, "1048576", "1MB");
393        addchoicebox(playerbuffersize, "1572864", "1,5MB");
394        addchoicebox(playerbuffersize, "2097152", "2MB");
395        addchoicebox(playerbuffersize, "2621440", "2,5MB");
396        addchoicebox(playerbuffersize, "3145728", "3MB");
397        addchoicebox(playerbuffersize, "3670016", "3,5MB");
398        addchoicebox(playerbuffersize, "4194304", "4MB");
399        addchoicebox(playerbuffersize, "4718592", "4,5MB");
400        addchoicebox(playerbuffersize, "5242880", "5MB");
401        setchoiceboxselection(playerbuffersize, getconfig("playerbuffersize", NULL));
402       
403        addchoicebox(playerbufferseektime, "0", "0");
404        addchoicebox(playerbufferseektime, "1", "1");
405        addchoicebox(playerbufferseektime, "2", "2");
406        addchoicebox(playerbufferseektime, "3", "3");
407        addchoicebox(playerbufferseektime, "4", "4");
408        addchoicebox(playerbufferseektime, "5", "5");
409        addchoicebox(playerbufferseektime, "6", "6");
410        addchoicebox(playerbufferseektime, "7", "7");
411        addchoicebox(playerbufferseektime, "8", "8");
412        addchoicebox(playerbufferseektime, "9", "9");
413        addchoicebox(playerbufferseektime, "10", "10");
414        setchoiceboxselection(playerbufferseektime, getconfig("playerbufferseektime", NULL));
415       
416        drawscreen(adjust, 0, 0);
417        addscreenrc(adjust, listbox);
418
419        tmp = listbox->select;
420        while(1)
421        {
422                addscreenrc(adjust, tmp);
423                rcret = waitrc(adjust, 0, 0);
424                tmp = listbox->select;
425
426                if(rcret == getrcconfigint("rcexit", NULL)) break;
427                if(rcret == getrcconfigint("rcok", NULL))
428                {
429                        addconfigscreen("volbartimeout", volbartimeout);
430                        addconfigscreen("infobartimeout", infobartimeout);
431                        addconfigscreen("infobarsleep", infobarsleep);
432                        addconfigscreencheck("secondinfobar", secondinfobar, "0");             
433                        addconfigscreen("spinnerspeed", spinnerspeed);
434                        status.spinnerspeed = getconfigint("spinnerspeed", NULL);
435                        addconfigscreen("spinnertime", spinnertime);
436                        status.spinnertime = getconfigint("spinnertime", NULL);
437                        addconfigscreen("hangtime", hangtime);
438                        status.hangtime = getconfigint("hangtime", NULL);
439                        addconfigscreencheck("nozapclear", nozapclear, "0");
440                        addconfigscreencheck("fastzap", fastzap, "0");
441                        addconfigscreencheck("faststop", faststop, "0");
442                        addconfigscreencheck("dirsort", dirsort, "0");
443                        addconfigscreencheck("poweraktion", poweraktion, "0");
444                        addconfigscreencheck("frontpoweraktion", frontpoweraktion, "0");
445                        addconfigscreencheck("recforerun", recforerun, "0");
446                        addconfigscreencheck("recoverrun", recoverrun, "0");
447                        addconfigscreencheck("virtualzap", virtualzap, "0");
448                        status.virtualzap = getconfigint("virtualzap", NULL);
449                        if(fasttextrender->ret != NULL)
450                        {
451                                addconfigscreencheck("fasttextrender", fasttextrender, "0");
452                                status.fasttextrender = atoi(fasttextrender->ret);
453                        }
454                        if(recsplitsize->ret != NULL)
455                        {
456                                addconfigscreencheck("recsplitsize", recsplitsize, "0");
457                                status.recsplitsize = atoi(recsplitsize->ret);
458                                status.recsplitsize *= 1000 * 1000 * 1000;
459                        }
460                        addconfigscreen("skip13", skip13);
461                        addconfigscreen("skip46", skip46);
462                        addconfigscreen("skip79", skip79);
463                        addconfigscreencheck("playertype", playertype, "1");
464                        addconfigscreencheck("autochangechannelname", autochangechannelname, "0");
465                        status.autochangechannelname = getconfigint("autochangechannelname", NULL);
466                        addconfigscreencheck("def_rectimer_after", def_rectimer_after, "0");
467                        addconfigscreencheck("showchanneltimeline", showchanneltimeline, "0");
468                        status.showchanneltimeline = getconfigint("showchanneltimeline", NULL);
469                        addconfigscreencheck("screenanim", screenanim, "0");
470                        status.screenanim = getconfigint("screenanim", NULL);
471                        addconfigscreencheck("screenanimspeed", screenanimspeed, "1");
472                        status.screenanimspeed = getconfigint("screenanimspeed", NULL);
473                        addconfigscreencheck("channellistview", channellistview, "0");
474                        status.channellistview = getconfigint("channellistview", NULL);
475                        addconfigscreencheck("showlastpos", showlastpos, "0");
476                        addconfigscreencheck("recsync", recsync, "0");
477                        addconfigscreencheck("recordnamefmt", recordnamefmt, "0");
478
479                        addconfigscreen("newsletter", newsletter);
480                        if(newsletter->ret != NULL && ostrcmp(newsletter->ret, "0") == 0)
481                                startnewsletter(0);
482                        else
483                                startnewsletter(1);
484
485                        addconfigscreen("showhiddenfiles", showhiddenfiles);
486                        status.showhiddenfiles = getconfigint("showhiddenfiles", NULL);
487                        addconfigscreencheck("expertmodus", expertmodus, "0");
488                        status.expertmodus = getconfigint("expertmodus", NULL);                                 
489                        addconfigscreencheck("infobarprogram", infobarprogram, "0");
490                        status.infobarprogram = getconfigint("infobarprogram", NULL);
491                        addconfigscreen("crosscontrol", crosscontrol);
492                        //addconfigscreencheck("crosscontrol", crosscontrol, "0");
493                        status.crosscontrol = getconfigint("crosscontrol", NULL);
494                        addconfigscreencheck("emucontrol", emucontrol, "0");
495
496                        if(ostrcmp(minitv->ret, "1") == 0) resettvpic();
497                        addconfigscreencheck("minitv", minitv, "0");
498
499                        if(checkbox("ATEMIO510") == 1 || checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1 || checkbox("ATEMIO7600") == 1 || checkbox("UFS912") == 1 || checkbox("UFS913") == 1 || checkbox("SPARK") == 1 || checkbox("SPARK7162") == 1)
500                                addconfigscreencheck("usecec", usecec, "0");
501
502                        if(checkbox("ATEMIO7600") == 1)
503                        {
504                                addconfigscreencheck("usecec", usecec, "0");
505                                if(sataswitch->ret != NULL)
506                                {
507                                        addownconfig("sataswitch", sataswitch->ret);
508                                        setsataswitch(sataswitch->ret);
509                                }
510                        }
511
512#ifdef MIPSEL
513                        addconfigscreen("dualboot", dualboot);
514                        if(dualboot->ret != NULL && ostrcmp(dualboot->ret, "0") == 0)
515                                unlink("/mnt/config/dualboot");
516                        else
517                                system("touch /mnt/config/dualboot");
518#endif
519                        addconfigscreen("playerbuffersize", playerbuffersize);
520                        addconfigscreen("playerbufferseektime", playerbufferseektime);
521
522#ifdef BETA
523                        addconfigscreencheck("debuglevel", debuglevel, "0");
524                        setdebuglevel();
525#endif
526
527                        addconfigscreen("community_user", community_user);
528                        // hid pass text and convert to md5sum
529                        if(community_pass->ret != NULL && ostrcmp(community_pass->ret, "****") != 0)
530                        {
531                                debug(99, "community_pass: write");
532                                debug(99, "community_pass: %s", community_pass->ret);
533                                addconfigscreen("community_pass", community_pass);
534                        }
535                        else
536                                debug(99, "community_pass: skipped");
537
538                        writeallconfig(1);
539
540                        debug(99, "community_pass_read: %s", getconfig("community_pass", NULL));
541
542                        break;
543                }
544        }
545
546        delownerrc(adjust);
547        clearscreen(adjust);
548}
549
550#endif
Note: See TracBrowser for help on using the repository browser.