/* This file is part of the KDE project Copyright (C) 2004 Laurent Montel David Faure 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. */ #ifndef KOOASISSETTINGS_H #define KOOASISSETTINGS_H #include #include /** * @brief Parse settings.xml file. * * This class helps parsing the settings.xml file of an OASIS document. * * For reference, the structure of settings.xml looks like: *
 *   \
 *      \
 *      ....
 *      \
 *      \
 *         \
 *           \
 *             \value\
 *               ....
 *                \
 *                  \
 *                    \
 *                    ......
 *                  \
 *                  \
 *                  ....
 *                  \
 *                \
 *           .....
 *           \
 *         \
 *         \
 *         .......
 *         \
 *      \
 *   \
 * 
* Basically, an item-set is a set of named \s and/or maps. * There are two kinds of maps (by-index or by-name), and entries in the * maps contain \s too, or nested maps. * * The API of KoOasisSettings allows the caller to look for a given item-set * or item-map once, and then lookup multiple items inside it. * It also allows "drilling down" inside the tree in case of nesting. */ class KOFFICECORE_EXPORT KoOasisSettings { public: /** * Normal KoOasisSettings constructor, for an OASIS settings.xml */ explicit KoOasisSettings( const TQDomDocument& doc ); /** * KoOasisSettings constructor for an OpenOffice-1.1 file */ KoOasisSettings( const TQDomDocument& doc, const char* officeNSURI, const char* configNSURI ); class Items; /** * Returns the toplevel item-set named @p itemSetName. * If not found, the returned items instance is null. */ Items itemSet( const TQString& itemSetName ) const; class IndexedMap; class NamedMap; /// Represents a collection of items (config-item or maps). class KOFFICECORE_EXPORT Items { friend class KoOasisSettings; friend class IndexedMap; friend class NamedMap; Items( const TQDomElement& elem, const KoOasisSettings* settings ) : m_element( elem ), m_settings( settings ) {} public: bool isNull() const { return m_element.isNull(); } /** * Look for the config-item-map-indexed named @p itemMapName and return it. * * An indexed map is an array (or sequence), i.e. items are supposed to * be retrieved by index. This is useful for e.g. "view 0", "view 1" etc. */ IndexedMap indexedMap( const TQString& itemMapName ) const; /** * Look for the config-item-map-named named @p mapItemName and return it. * * A named map is a map where items are retrieved by entry name, @see selectItemMapEntry * @return false if no such map was found */ NamedMap namedMap( const TQString& itemMapName ) const; int parseConfigItemInt( const TQString& configName, int defValue = 0 ) const; double parseConfigItemDouble( const TQString& configName, double defValue = 0 ) const; TQString parseConfigItemString( const TQString& configName, const TQString& defValue = TQString() ) const; bool parseConfigItemBool( const TQString& configName, bool defValue = false ) const; short parseConfigItemShort( const TQString& configName, short defValue = 0 ) const; long parseConfigItemLong( const TQString& configName, long defValue = 0 ) const; private: /// @internal TQString findConfigItem( const TQString& item, bool* ok ) const; /// @internal TQString findConfigItem( const TQDomElement& element, const TQString& item, bool* ok ) const; TQDomElement m_element; const KoOasisSettings* m_settings; }; /// Internal base class for IndexedMap and NamedMap class Map { public: bool isNull() const { return m_element.isNull(); } protected: Map( const TQDomElement& elem, const KoOasisSettings* settings ) : m_element( elem ), m_settings( settings ) {} const TQDomElement m_element; const KoOasisSettings* m_settings; }; class KOFFICECORE_EXPORT IndexedMap : public Map { friend class Items; IndexedMap( const TQDomElement& elem, const KoOasisSettings* settings ) : Map( elem, settings ) {} public: /// Returns an entry in an indexed map Items entry( int entryIndex ) const; }; class KOFFICECORE_EXPORT NamedMap : public Map { friend class Items; NamedMap( const TQDomElement& elem, const KoOasisSettings* settings ) : Map( elem, settings ) {} public: /// Returns an entry in a named map Items entry( const TQString& entryName ) const; }; private: friend class Items; friend class IndexedMap; friend class NamedMap; const TQDomElement m_settingsElement; const char* m_configNSURI; class Private; Private* d; }; #endif