/* Copyright (C) 2008 Torsten Rahn 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 GEOSCENELAYER_H #define GEOSCENELAYER_H #include #include #include #include "GeoDocument.h" namespace Marble { class GeoSceneFilter; /** * @short Contents used inside a layer. */ class GEODATA_EXPORT GeoSceneAbstractDataset : public GeoNode { public: virtual ~GeoSceneAbstractDataset() {}; QString name() const; QString fileFormat() const; void setFileFormat( const QString& fileFormat ); int expire() const; void setExpire( int expire ); virtual QString type() = 0; protected: explicit GeoSceneAbstractDataset( const QString& name ); private: QString m_name; QString m_fileFormat; int m_expire; }; /** * @short Layer of a GeoScene document. */ class GEODATA_EXPORT GeoSceneLayer : public GeoNode { public: explicit GeoSceneLayer( const QString& name ); ~GeoSceneLayer(); /** * @brief Add a section to the legend * @param section the new section */ void addDataset( GeoSceneAbstractDataset* ); GeoSceneAbstractDataset * dataset( const QString& ); GeoSceneAbstractDataset * groundDataset() const; QVector datasets() const; QString name() const; QString backend() const; void setBackend( const QString& plugin ); /** * @brief returns whether the data is organized in quad tiles. */ bool isTiled() const; void setTiled( bool ); QString role() const; void setRole( const QString& type ); GeoSceneFilter * filter(); void addFilter( GeoSceneFilter * filter ); void removeFilter( GeoSceneFilter * filter ); private: Q_DISABLE_COPY( GeoSceneLayer ) /// The vector holding all the data in the layer. /// (We want to preserve the order and don't care /// much about speed here), so we don't use a hash QVector m_datasets; GeoSceneFilter *m_filter; QString m_name; QString m_backend; QString m_role; bool m_tiled; }; } #endif // GEOSCENELAYER_H