/* -*- 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 #include #include #include #include "messagebox.h" #include "widgets/widget.h" #include "widgets/window.h" #include "lua.h" #include "resumewidget.h" extern QString cpr; extern QString user; extern QString host; extern quint16 port; MacroWindow::MacroWindow(NetCom &n, QDomNode &xml_doc, QString templ, bool collapsed, bool compact) : Collapser(), netcom(n) { mainwidget = NULL; this->lua = new LUA(&mainwidget); waschanged = false; this->templ = templ; setCollapsedWidget(new ResumeWidget(compact)); update(xml_doc); setCollapsed(collapsed); active = true; } MacroWindow::~MacroWindow() { clear(); delete lua; } void MacroWindow::update(QDomNode &node) { initMacro(node); if(mainwidget) setExpandedWidget(mainwidget->qwidget()); else setExpandedWidget(NULL); } void MacroWindow::initMacro(QDomNode &node) { QDomElement xml_elem = node.toElement(); if(xml_elem.tagName() == "macro") { // Assign the macro name and version to QStrings for use when comitting macro = xml_elem.attribute("name", ""); version = xml_elem.attribute("version", ""); } else if(xml_elem.tagName() == "scripts") { // Nothing to do here } else if(xml_elem.tagName() == "resume") { QString resume = xml_elem.text(); ResumeWidget::state_t state = ResumeWidget::OLD; if(xml_elem.hasAttribute("state")) { if(xml_elem.attribute("state") == "old") state = ResumeWidget::OLD; if(xml_elem.attribute("state") == "new") state = ResumeWidget::NEW; if(xml_elem.attribute("state") == "dirty") state = ResumeWidget::DIRTY; } ((ResumeWidget*)collapsedWidget())->setText(resume, state); } else if(xml_elem.tagName() == "script") { if(xml_elem.attribute("language", "lua") == "lua") { this->lua->runScript(xml_elem.text(), NULL, "preload"); } } else if(xml_elem.tagName() == "widgets") { if(mainwidget) { printf("ERROR!!!!!!\n\tmainwidget already exists!\n"); } Window *window = new Window(xml_elem, this); connect(window, SIGNAL(wasChanged()), this, SLOT(macroChanged())); macrotitle = xml_elem.attribute("caption"); clear(); mainwidget = window; mainwidget->setValues(); /* QDomNodeList children = node.childNodes(); // Insert their values (this must be done last for scripts to work properly) for (int i=0; i bool MacroWindow::doCommit() { if(mainwidget->valid()) { QVector< Widget* > wlist = mainwidget->widgetList(); QDomDocument doc = netcom.send(wlist, templ, macro, version); QDomNodeList nl = doc.documentElement().childNodes(); QDomNode n = nl.at(0); // There can be only one! (Swush, flomp) if(n.toElement().tagName() == "error") { QMessageBox::critical(this, "Server Error", "Server Error: " + n.toElement().text()); return false; } qApp->processEvents(); emit updateOnCommit(); // setCollapsed(true); collapse(); return true; } else { MessageBox::critical(NULL, "Fejl", "Makroen " + macrotitle + " er ikke udfyldt korrekt, prøv igen.\n", MessageBox::Ok); return false; } } void MacroWindow::commit() { doCommit(); } void MacroWindow::cancel() { collapseWrapper(); } void MacroWindow::expandWrapper() { if(!isCollapsed()) return; // clear(); waschanged = false; QDomDocument xml_doc = netcom.send(templ, macro); // Initiate the new macro window with the xml document and push // it to the window list QDomNodeList templates = xml_doc.documentElement().childNodes(); // There can be only one! (Swush, flomp) QDomNode templatenode = templates.at(0); QDomNodeList macronodes = templatenode.childNodes(); for(int j = 0; j < macronodes.count(); j++) { QDomNode macronode = macronodes.at(j); if(true || macronode.childNodes().count()) { // macrowindows.push_back( new MacroWindow( netcom, macronode ) ); QDomElement xml_elem = macronode.toElement(); if(xml_elem.tagName() == "macro") { // Assign the macro name and version to QStrings for use when comitting QString macroname; if(xml_elem.hasAttribute("name")) { if(xml_elem.attribute("name") == macro) { // update me! initMacro(macronode); } } } } } if(mainwidget) setExpandedWidget(mainwidget->qwidget()); expand(); // Set keyboard focus on the first focusable widget in the macro. QVector< Widget* > widgets = mainwidget->widgetList(true); QVector< Widget* >::iterator i = widgets.begin(); while (i != widgets.end()) { if(*i) { Widget* w = *i; if(w->setKeyboardFocus()) break; } i++; } } void MacroWindow::collapseWrapper() { if(isCollapsed()) return; if(waschanged) { switch(MessageBox::warning(NULL, "Gem ændringerne i makroen?", "Du har valgt at ukke makroen " + macrotitle + ".\n" "Ønsker du at gemme inden du lukker?", MessageBox::Save | MessageBox::Close | MessageBox::Cancel)) { case MessageBox::Save: if(doCommit()) { setCollapsed(true); } else { MessageBox::critical(NULL, "Fejl", "Makroen " + macrotitle + " er ikke udfyldt korrekt, prøv igen.\n", MessageBox::Ok); } break; case MessageBox::Close: collapse(); break; case MessageBox::Cancel: default: break; } } else { collapse(); } } void MacroWindow::toggleMacro() { if(!active) return; if(isCollapsed()) { expandWrapper(); } else { collapseWrapper(); } } void MacroWindow::macroChanged() { printf("This macro was changed!\n"); emit macroHasChanged(); waschanged = true; } void MacroWindow::setActive(bool active) { if(this->active == active) return; this->active = active; setEnabled(active); emit activationChanged(active); } void MacroWindow::clear() { if(mainwidget) mainwidget->deleteLater(); mainwidget = NULL; setExpandedWidget(NULL); luaprograms.clear(); }