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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
Status::Status()
{
QVBoxLayout *vl = new QVBoxLayout();
setLayout(vl);
this->caption = new QLabel();
vl->addWidget(this->caption);
QHBoxLayout *ohl = new QHBoxLayout();
ohl->setContentsMargins(0,0,0,0);
vl->addLayout(ohl);
hl = new QHBoxLayout();
hl->setContentsMargins(0,0,0,0);
ohl->addLayout(hl);
ohl->addStretch();
}
void Status::setCaption(QString caption)
{
this->caption->setText(caption + ":");
}
void Status::setStatus(QString macro, QString caption, bool done)
{
if(icons.find(macro) == icons.end()) {
QLabel *icon = new QLabel();
icon->setContentsMargins(0,0,0,0);
icon->setMargin(0);
icon->setIndent(0);
icon->setWhatsThis(caption);
icon->setToolTip(caption);
icons[macro] = icon;
hl->addWidget(icon);
}
icons[macro]->setPixmap(QPixmap(done?":/icons/done.png":":icons/undone.png"));
}
Viewer::Viewer(QString cpr, QString templs, QString host, quint16 port,
QString user, QString journalpath)
: QWidget(NULL)
{
this->templs = templs.split(QRegExp("\\W+"), QString::SkipEmptyParts);
connect(&updatetimer, SIGNAL(timeout()), this, SLOT(update()));
netcom = new NetCom(host, port, user, cpr);
host = host; port = port; user = user;
this->cpr = cpr;
this->journalpath = journalpath;
updatetimer.start(10000);
QVBoxLayout *l = new QVBoxLayout();
setLayout(l);
QStringList::iterator ti = this->templs.begin();
while(ti != this->templs.end()) {
Status *s = new Status();
l->addWidget(s);
statuses[*ti] = s;
ti++;
}
journal = new QTextEdit();
journal->setReadOnly(true);
journal->setFontFamily("Courier New");
l->addWidget(journal);
init();
update();
}
Viewer::~Viewer()
{
delete netcom;
delete journal;
}
void Viewer::closeEvent(QCloseEvent *)
{
QSettings settings("Aasimon.org", "Pracro");
settings.beginGroup("ViewerWindow");
settings.setValue("size", size());
settings.setValue("pos", pos());
settings.endGroup();
}
void Viewer::init()
{
QSettings settings("Aasimon.org", "Pracro");
settings.beginGroup("ViewerWindow");
resize(settings.value("size", QSize(700, 800)).toSize());
move(settings.value("pos", QPoint(0, 0)).toPoint());
settings.endGroup();
}
void Viewer::update()
{
QStringList::iterator ti = templs.begin();
while(ti != templs.end()) {
QDomDocument xml_doc = netcom->send(*ti, "", false);
QDomNodeList templates = xml_doc.documentElement().childNodes();
QDomNode templatenode = templates.at(0);
QDomElement templateelement = templatenode.toElement();
statuses[*ti]->setCaption(templateelement.attribute("title"));
QDomNodeList macronodes = templatenode.childNodes();
for(int j = 0; j < macronodes.count(); j++) {
QDomNode macronode = macronodes.at(j);
QDomElement macroelement = macronode.toElement();
if(macroelement.tagName() != "macro") continue;
if(macroelement.attribute("static") == "true") continue;
QString macroname = macroelement.attribute("name");
QString caption = macroelement.attribute("caption");
QString completed = macroelement.attribute("completed");
statuses[*ti]->setStatus(macroname, caption, completed == "true");
}
ti++;
}
QString crypt;
for(int i = cpr.length() - 1; i >= 0; i--) {
if(i == 2 || i == 3) continue;
crypt += QString::number(9 - cpr.mid(i, 1).toInt());
}
QString filename = journalpath + "/" + cpr.mid(2,2) + "/" + crypt + "/JOURNAL.TXT";
QTextCodec *cp850 = QTextCodec::codecForName("cp850");
if(!cp850) {
printf("Could not find decoder for cp850!\n");
}
QFile jfile(filename);
jfile.open(QIODevice::ReadOnly);
QByteArray jcp850 = jfile.readAll();
QString j = cp850->toUnicode(jcp850);
QString jstrip;
for(int i = 0; i < j.length(); i++) {
if(j[i] != '�') jstrip += j[i];
}
if(journal->toPlainText() != jstrip) {
int pos = journal->verticalScrollBar()->value();
journal->setPlainText(jstrip);
journal->verticalScrollBar()->setValue(pos);
}
}
|