/* Copyright (C) 2007 Murad Tagirov Copyright (C) 2007 Nikolas Zimmermann This file is part of the KDE project 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 aint 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 "GeoDataDocument.h" #include "GeoDataDocument_p.h" #include "GeoDataFolder.h" #include "GeoDataPlacemark.h" #include "GeoDataStyle.h" #include "GeoDataStyleMap.h" #include "MarbleDebug.h" namespace Marble { GeoDataDocument::GeoDataDocument() : GeoDataContainer( new GeoDataDocumentPrivate ) { } GeoDataDocument::GeoDataDocument( const GeoDataFeature& other ) : GeoDataContainer( other ) { } GeoDataDocument::GeoDataDocument( const GeoDataDocument& other ) : GeoDocument(), GeoDataContainer( other ) { } GeoDataDocument::~GeoDataDocument() { } GeoDataDocumentPrivate* GeoDataDocument::p() const { return static_cast(d); } QString GeoDataDocument::nodeType() const { return p()->nodeType(); } QString GeoDataDocument::fileName() const { return p()->m_filename; } void GeoDataDocument::setFileName( const QString &value ) { detach(); p()->m_filename = value; } void GeoDataDocument::addStyle( const GeoDataStyle& style ) { detach(); p()->m_styleHash.insert( style.styleId(), style ); } void GeoDataDocument::removeStyle( const QString& styleId ) { detach(); p()->m_styleHash.remove( styleId ); } GeoDataStyle& GeoDataDocument::style( const QString& styleId ) const { /* * FIXME: m_styleHash always should contain at least default * GeoDataStyle element */ return p()->m_styleHash[ styleId ]; } QList GeoDataDocument::styles() const { return p()->m_styleHash.values(); } void GeoDataDocument::addStyleMap( const GeoDataStyleMap& map ) { detach(); p()->m_styleMapHash.insert( map.styleId(), map ); } void GeoDataDocument::removeStyleMap( const QString& mapId ) { detach(); p()->m_styleMapHash.remove( mapId ); } GeoDataStyleMap& GeoDataDocument::styleMap( const QString& styleId ) const { return p()->m_styleMapHash[ styleId ]; } QList GeoDataDocument::styleMaps() const { return p()->m_styleMapHash.values(); } void GeoDataDocument::pack( QDataStream& stream ) const { GeoDataContainer::pack( stream ); stream << p()->m_styleHash.size(); for( QMap::const_iterator iterator = p()->m_styleHash.constBegin(); iterator != p()->m_styleHash.constEnd(); ++iterator ) { iterator.value().pack( stream ); } } void GeoDataDocument::unpack( QDataStream& stream ) { detach(); GeoDataContainer::unpack( stream ); int size = 0; stream >> size; for( int i = 0; i < size; i++ ) { GeoDataStyle style; style.unpack( stream ); p()->m_styleHash.insert( style.styleId(), style ); } } }