/usr/include/marble/GeoDataDocument.h is in libmarble-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | /*
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 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();
/// 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 ) 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 ) const;
/**
* @brief dump a Vector of all styles
*/
QList<GeoDataStyleMap> styleMaps() 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;
};
}
Q_DECLARE_METATYPE(Marble::GeoDataDocument*)
#endif
|