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
|
// -*- c++ -*-
#include "setup.h"
cText2SkinSetup Text2SkinSetup;
// --- cText2SkinSetup --------------------------------------------------------
cText2SkinSetup::cText2SkinSetup(void):
MenuScrollbar(false),
MarqueeLeftRight(true),
MarqueeReset(false),
ShowAux(true),
StripAux(true),
CheckTimerConflict(false),
MaxCacheFill(25),
MaxChars(100),
TabWidth(false),
SupportOldSkins(true)
{
}
bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
if (strcmp(Name, "MenuScrollbar") == 0) MenuScrollbar = atoi(Value);
else if (strcmp(Name, "MarqueeLeftRight") == 0) MarqueeLeftRight = atoi(Value);
else if (strcmp(Name, "MarqueeReset") == 0) MarqueeReset = atoi(Value);
else if (strcmp(Name, "ShowAux") == 0) ShowAux = atoi(Value);
else if (strcmp(Name, "StripAux") == 0) StripAux = atoi(Value);
else if (strcmp(Name, "CheckTimerConflict") == 0) CheckTimerConflict = atoi(Value);
else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value);
else if (strcmp(Name, "MaxChars") == 0) MaxChars = atoi(Value);
else if (strcmp(Name, "TabWidth") == 0) TabWidth = atoi(Value);
else if (strcmp(Name, "SupportOldSkins") == 0) SupportOldSkins = atoi(Value);
else return false;
return true;
}
|