summaryrefslogtreecommitdiff
path: root/client/macrowindow.cc
blob: aab9857bf260f8100a79b9cb72ada3493ce16946 (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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            macrowindow.cc
 *
 *  Fri Aug 31 12:27:45 CEST 2007
 *  Copyright 2007 Lars Bisballe Jensen and Bent Bisballe Nyeng
 *  elsenator@gmail.com and deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Pracro.
 *
 *  Pracro is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Pracro is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Pracro; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "macrowindow.h"
#include "sendrecieve.h"
#include "widgets.h"
#include "macro.h"
#include <QVBoxLayout>
#include <QMessageBox>
#include <QDomDocument>
#include <QDomElement>
#include <QDomNode>
#include <QByteArray>

#include "lua.h"

extern QString cpr;
extern QString user;
extern QString host;
extern quint16 port;

MacroWindow::MacroWindow(QDomDocument *xml_doc)
  : QObject()
{
  isclosed = false;

  this->lua = new LUA(this);

  // Execute the recursive function with documentElement
  recurser(xml_doc->documentElement(), NULL);
}

MacroWindow::~MacroWindow()
{
  delete lua;
}

void MacroWindow::recurser(QDomNode xml_node, QWidget *parent)
{
  QWidget *widget = NULL;
  QDomElement xml_elem = xml_node.toElement();

  if(xml_elem.tagName() == "macro") {
    // Assign the macro name and version to QStrings for use when comitting
    if(xml_elem.hasAttribute("name")) macro = xml_elem.attribute("name");
    if(xml_elem.hasAttribute("version")) version = xml_elem.attribute("version");

  } else if(xml_elem.tagName() == "luaprograms") {
    // Nothing to do here
  } else if(xml_elem.tagName() == "luaprogram") {

    if(xml_elem.hasAttribute("name")) {
      luaprograms[xml_elem.attribute("name")] = xml_elem.text();
    }

  } else if(xml_elem.tagName() == "window") {
    Window *window = new Window(xml_elem, this);
    widget = window;
    mainwidget = window;

  } else if(xml_elem.tagName() == "frame") {
    if(xml_elem.hasAttribute("caption")) {
      GroupBox *frame = new GroupBox(xml_elem, this);
      widget = frame;
    } else {
      Frame *frame = new Frame(xml_elem, this);
      widget = frame;
    }

  } else if(xml_elem.tagName() == "label") {
    Label *label = new Label(xml_elem, this);
    widget = label;

  } else if(xml_elem.tagName() == "lineedit") {
    LineEdit *lineedit = new LineEdit(xml_elem, this);
    widgets.push_back(lineedit);
    widget = lineedit;

  } else if(xml_elem.tagName() == "button") {
    PushButton *pushbutton = new PushButton(xml_elem, this);
    //connect(pushbutton, SIGNAL(act_continue()), main, SLOT(get_macro()));
    connect(pushbutton, SIGNAL(act_commit()), this, SLOT(commit()));
    connect(pushbutton, SIGNAL(act_reset()), this, SLOT(reset()));
    connect(pushbutton, SIGNAL(act_cancel()), this, SLOT(cancel()));
    connect(pushbutton, SIGNAL(act_continue(QString)), this, SLOT(cont(QString)));
    widget = pushbutton;

  } else if(xml_elem.tagName() == "textedit") {
    TextEdit *textedit = new TextEdit(xml_elem, this);
    widgets.push_back(textedit);
    widget = textedit;

  } else if(xml_elem.tagName() == "checkbox") {
    CheckBox *checkbox = new CheckBox(xml_elem, this);
    widgets.push_back(checkbox);
    widget = checkbox;

  } else if(xml_elem.tagName() == "radiobuttons") {
    RadioButtons *radiobuttons = new RadioButtons(xml_elem, this);
    widgets.push_back(radiobuttons);
    widget = radiobuttons;
    //return; // Don't iterate children

  } else if(xml_elem.tagName() == "combobox") {
    ComboBox *combobox = new ComboBox(xml_elem, this);
    widgets.push_back(combobox);
    widget = combobox;
    //return; // Don't iterate children

  } else if(xml_elem.tagName() == "listbox") {
    ListBox *listbox = new ListBox(xml_elem, this);
    widgets.push_back(listbox);
    widget = listbox;
    //return; // Don't iterate children
  }

  QDomNodeList children = xml_node.childNodes();

  for (int i=0; i<children.count();i++) {
    QDomNode child = children.at(i);
    recurser(child, widget);
  }

  if(parent != NULL && widget != NULL) parent->layout()->addWidget(widget);
  if(widget != NULL) widget->show();
}

bool MacroWindow::doCommit()
{
  // Check for, and count, errors on all entries before comitting
  int faulty = 0; // 0 initial errors

  QVector< Widget* >::iterator i = widgets.begin();
  while (i != widgets.end()) {
    Widget* w = *i;
    if(!w->isValid()) faulty++; // Regexp check, returns valid if entry passed
    i++;
  }

  // If all entries passed validation, continue commit
  if(faulty == 0) {
    printf("MacroWindow -> committing...\n");
    
    // Build the XML commit
    QString xml_string;
    xml_string.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
    xml_string.append("<pracro version=\"1.0\" cpr=\"" + cpr + "\" user=\"" + user + "\">\n");
    xml_string.append("  <commit macro=\"" + macro + "\" version=\"" + 
		      version + "\">\n");

    // Iterate the different entries, and append their results to the commit string
    QVector< Widget* >::iterator i=widgets.begin();
    while (i != widgets.end()) {
      Widget* w = *i;
      
      xml_string.append("    <field name=\"" + w->getName()
		     + "\" value=\"" + w->getValue() + "\"/>\n");
      i++;
    }
    
    xml_string.append("  </commit>\n");
    xml_string.append("</pracro>\n");
    
    // Print commit to stdout for debug purposes
    printf("%s\n", xml_string.toStdString().c_str());

    // Convert the commit to Utf-8 charset
    QByteArray xml_array = xml_string.toUtf8();
    QDomDocument xml_result;

    // Use setContent of QDomDocument to validate the xml commit
    if (!xml_result.setContent(xml_array)) {
      printf("Parse error: Invalid XML\n");
    }
    
    // Commit the xml data to the server
    SendRecieve macro_commit(host, port);
    macro_commit.makeConnection(&xml_result);
    // Recieve answer from server whether successful or not
    //QByteArray ba = macro_commit.getResult();
    QString ba = macro_commit.getResult();
    printf("Server returned result: %s", ba.toStdString().c_str());
    return true;
  } else {
    return false;
  }
}

void MacroWindow::close()
{
  mainwidget->close();
  isclosed = true;
}

void MacroWindow::commit()
{
  if(doCommit()) {
    close();
  } else {
   QMessageBox::critical(NULL, "Fejl",
			  "Makroen er ikke udfyldt korrekt, prøv igen.\n"
			  , QMessageBox::Ok);
  }
}

void MacroWindow::reset()
{
  QMessageBox::warning(NULL, tr("Reset"),
                   tr("Du har valgt at nulstille de indtastede data.\n"
                      "Er du sikker?"),
                   QMessageBox::Yes | QMessageBox::Cancel);
  printf("MacroWindow -> resetting...\n");
}

void MacroWindow::cancel()
{
  printf("MacroWindow -> cancelling...\n");
  close();
}

void MacroWindow::cont(QString name)
{
  QString macro;
  QVector< Widget* >::iterator i=widgets.begin();
  while (i != widgets.end()) {
    Widget* w = *i;
    if(w->getName() == name) {
      macro = w->getValue();
    }
    i++;
  }
  if(doCommit()) {
    new_macro("FIXME", macro);
    close();
  } else {
   QMessageBox::critical(NULL, "Fejl",
			 "Makroen er ikke udfyldt korrekt, prøv igen.\n",
			 QMessageBox::Ok);
  }
  printf("%s : MacroWindow -> continuing...\n", macro.toStdString().c_str());
}

bool MacroWindow::isClosed()
{
  return isclosed;
}

QString MacroWindow::getValue(QString name)
{
  // Iterate the different entries, and append their results to the commit string
  QVector< Widget* >::iterator i=widgets.begin();
  while (i != widgets.end()) {
    Widget* w = *i;
    if(name == w->getName()) return w->getValue();
    i++;
  }
  return name + " - No such field!";
}

void MacroWindow::setValue(QString name, QString value)
{
  // Iterate the different entries, and append their results to the commit string
  QVector< Widget* >::iterator i = widgets.begin();
  while (i != widgets.end()) {
    Widget* w = *i;
    if(name == w->getName()) w->setValue(value);
    i++;
  }
}