File indexing completed on 2024-12-01 13:11:44
0001 /* This file is part of the KDE project 0002 * 0003 * Copyright (C) 2013 Inge Wallin <inge@lysator.liu.se> 0004 * 0005 * This library is free software; you can redistribute it and/or 0006 * modify it under the terms of the GNU Library General Public 0007 * License as published by the Free Software Foundation; either 0008 * version 2 of the License, or (at your option) any later version. 0009 * 0010 * This library is distributed in the hope that it will be useful, 0011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 0013 * Library General Public License for more details. 0014 * 0015 * You should have received a copy of the GNU Library General Public License 0016 * along with this library; see the file COPYING.LIB. If not, write to 0017 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 0018 * Boston, MA 02110-1301, USA. 0019 */ 0020 0021 0022 #ifndef KOODF_STYLE_PROPERTIES_H 0023 #define KOODF_STYLE_PROPERTIES_H 0024 0025 // Qt 0026 #include <QString> 0027 #include <QHash> 0028 0029 0030 #include "koodf2_export.h" 0031 #include "KoXmlStreamReader.h" 0032 0033 0034 class QString; 0035 class KoXmlWriter; 0036 0037 0038 typedef QHash<QString, QString> AttributeSet; // name, value 0039 0040 0041 class KOODF2_EXPORT KoOdfStyleProperties 0042 { 0043 public: 0044 KoOdfStyleProperties(); 0045 virtual ~KoOdfStyleProperties(); 0046 0047 QString attribute(const QString &property) const; 0048 void setAttribute(const QString &property, const QString &value); 0049 0050 virtual void clear(); 0051 0052 virtual bool readOdf(KoXmlStreamReader &reader); 0053 virtual bool saveOdf(const QString &propertySet, KoXmlWriter *writer); 0054 0055 void copyPropertiesFrom(const KoOdfStyleProperties &sourceProperties); 0056 0057 protected: 0058 /// Read all attributes from the XML element. 0059 /// This function is normally called from readOdf(). 0060 bool readAttributes(KoXmlStreamReader &reader); 0061 bool saveAttributes(KoXmlWriter *writer); 0062 0063 private: 0064 class Private; 0065 Private * const d; 0066 }; 0067 0068 0069 void copyAttributes(KoXmlStreamReader &reader, AttributeSet &attributes); 0070 void saveAttributes(AttributeSet &attributes, KoXmlWriter *writer); 0071 0072 0073 #endif