/* * Stellarium * Copyright (C) 2008 Matthew Gates * * This program 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. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "StelIniParser.hpp" #include #include #include #include #include #include bool readStelIniFile(QIODevice &device, QSettings::SettingsMap &map) { // Is this the right conversion? const QString& data = QString::fromUtf8(device.readAll().data()); // Split by a RE which should match any platform's line breaking rules QRegExp matchLbr("[\\n\\r]+"); const QStringList& lines = data.split(matchLbr, QString::SkipEmptyParts); QString currentSection = ""; QRegExp sectionRe("^\\[(.+)\\]$"); QRegExp keyRe("^([^=]+)\\s*=\\s*(.+)$"); QRegExp cleanComment("#.*$"); QRegExp cleanWhiteSpaces("^\\s+"); QRegExp reg1("\\s+$"); for(int i=0; i maxKeyWidth) maxKeyWidth = key.size(); } // OK, this time actually write to the file - first non-section values QString outputLine; for(int i=0; i