/*************************************************************************** * Copyright (c) 2015 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library 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 Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * * License along with this library; see the file COPYING.LIB. If not, * * write to the Free Software Foundation, Inc., 51 Franklin Street, * * Fifth Floor, Boston, MA 02110-1301, USA * * * ***************************************************************************/ #include "PreCompiled.h" #ifndef _PreComp_ #endif #include #include #include #include #include #include "Branding.h" using namespace App; Branding::Branding() { filter.push_back("Application"); filter.push_back("WindowTitle"); filter.push_back("CopyrightInfo"); filter.push_back("MaintainerUrl"); filter.push_back("WindowIcon"); filter.push_back("ProgramLogo"); filter.push_back("ProgramIcons"); filter.push_back("BuildVersionMajor"); filter.push_back("BuildVersionMinor"); filter.push_back("BuildRevision"); filter.push_back("BuildRevisionDate"); filter.push_back("SplashScreen"); filter.push_back("SplashAlignment"); filter.push_back("SplashTextColor"); filter.push_back("SplashInfoColor"); filter.push_back("StartWorkbench"); filter.push_back("ExeName"); filter.push_back("ExeVendor"); filter.push_back("NavigationStyle"); filter.push_back("UserParameterTemplate"); } bool Branding::readFile(const QString& fn) { QFile file(fn); if (!file.open(QFile::ReadOnly)) return false; if (!evaluateXML(&file, domDocument)) return false; file.close(); return true; } Branding::XmlConfig Branding::getUserDefines() const { XmlConfig cfg; QDomElement root = domDocument.documentElement(); QDomElement child; if (!root.isNull()) { child = root.firstChildElement(); while (!child.isNull()) { std::string name = (const char*)child.localName().toLatin1(); std::string value = (const char*)child.text().toUtf8(); if (std::find(filter.begin(), filter.end(), name) != filter.end()) cfg[name] = value; child = child.nextSiblingElement(); } } return cfg; } bool Branding::evaluateXML(QIODevice *device, QDomDocument& xmlDocument) { QString errorStr; int errorLine; int errorColumn; if (!xmlDocument.setContent(device, true, &errorStr, &errorLine, &errorColumn)) { return false; } QDomElement root = xmlDocument.documentElement(); if (root.tagName() != QLatin1String("Branding")) { return false; } else if (root.hasAttribute(QLatin1String("version"))) { QString attr = root.attribute(QLatin1String("version")); if (attr != QLatin1String("1.0")) return false; } return true; }