Your IP : 216.73.216.48
/*
Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
Copyright (C) 2007 Murad Tagirov <tmurad@gmail.com>
Copyright (C) 2009 Patrick Spendrin <ps_ml@gmx.de>
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.
*/
#ifndef MARBLE_GEODATADOCUMENT_H
#define MARBLE_GEODATADOCUMENT_H
#include <QHash>
#include <QMetaType>
#include <QVector>
#include "geodata_export.h"
#include "GeoDataContainer.h"
#include "GeoDocument.h"
namespace Marble
{
enum DocumentRole {
UnknownDocument,
MapDocument,
UserDocument,
TrackingDocument,
BookmarkDocument,
SearchResultDocument
};
class GeoDataStyle;
class GeoDataStyleMap;
class GeoDataNetworkLinkControl;
class GeoDataSchema;
class GeoDataDocumentPrivate;
/**
* @short A container for Features, Styles and in the future Schemas.
*
* A GeoDataDocument is a container for features, styles, and
* schemas. This element is required if your KML file uses schemas or
* shared styles. It is recommended that all Styles be defined in a
* Document, each with an id, and then later referenced by a
* styleUrl for a given Feature or StyleMap.
*/
class GEODATA_EXPORT GeoDataDocument : public GeoDocument,
public GeoDataContainer
{
public:
GeoDataDocument();
GeoDataDocument( const GeoDataDocument& other );
~GeoDataDocument();
bool operator==( const GeoDataDocument &other ) const;
bool operator!=( const GeoDataDocument &other ) const;
/// Provides type information for downcasting a GeoData
virtual bool isGeoDataDocument() const { return true; }
DocumentRole documentRole() const;
void setDocumentRole( DocumentRole role );
QString property() const;
void setProperty( QString property );
/**
* @brief The filename of the document
*
* The filename of the document is used internally to identify the files.
* it should never be empty as this could lead to potential collisions.
*
* @return The filename of this document
*/
QString fileName() const;
/**
* @brief Set a new file name for this document
* @param value the new name
*/
void setFileName( const QString &value );
/**
* @brief The URI relative paths should be resolved against
*/
QString baseUri() const;
/**
* @brief Change the URI for resolving relative paths.
* See http://tools.ietf.org/html/rfc3986#section-5
*/
void setBaseUri( const QString &baseUri );
/**
* @brief the NetworkLinkControl of the file
*/
GeoDataNetworkLinkControl networkLinkControl() const;
/**
* @brief set the NetworkLinkControl of the file
*/
void setNetworkLinkControl( const GeoDataNetworkLinkControl &networkLinkControl );
/**
* @brief Add a style to the style storage
* @param style the new style
*/
void addStyle( const GeoDataStyle& style );
/**
* @brief Add a style to the style storage
* @param style the new style
*/
void removeStyle( const QString& styleId );
/**
* @brief Return a style in the style storage
* @param styleId the id of the style
*/
GeoDataStyle& style( const QString& styleId );
GeoDataStyle style( const QString& styleId ) const;
/**
* @brief dump a Vector of all styles
*/
QList<GeoDataStyle> styles() const;
/**
* @brief Add a stylemap to the stylemap storage
* @param map the new stylemap
*/
void addStyleMap( const GeoDataStyleMap& map );
/**
* @brief remove stylemap from storage
* @param mapId the styleId of the styleMap to be removed
*/
void removeStyleMap( const QString& mapId );
/**
* @brief Return a style in the style storage
* @param styleId the id of the style
*/
GeoDataStyleMap& styleMap( const QString& styleId );
GeoDataStyleMap styleMap( const QString& styleId ) const;
/**
* @brief dump a Vector of all styles
*/
QList<GeoDataStyleMap> styleMaps() const;
/**
* @brief Add a schema to simplemap storage
* @param schema the new schema
*/
void addSchema( const GeoDataSchema& schema );
/**
* @brief remove a schema from schema storage
* @param schemaId the of schema to be removed
*/
void removeSchema( const QString& schemaId );
/**
* @brief Returns a schema with id = schemaId form schema storage
* @param schemaId The id of schema to be returned
*/
GeoDataSchema schema( const QString& schemaId ) const;
GeoDataSchema &schema( const QString& schemaId );
/**
* @brief dump a vector of all schemas
*/
QList<GeoDataSchema> schemas() const;
// Serialize the Placemark to @p stream
virtual void pack( QDataStream& stream ) const;
// Unserialize the Placemark from @p stream
virtual void unpack( QDataStream& stream );
private:
GeoDataDocumentPrivate *p();
const GeoDataDocumentPrivate *p() const;
};
}
Q_DECLARE_METATYPE(Marble::GeoDataDocument*)
#endif