/* Copyright (C) 2008 Torsten Rahn Copyright (C) 2008 Jens-Michael Hoffmann 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 "GeoSceneTexture.h" #include "global.h" namespace Marble { GeoSceneTexture::GeoSceneTexture( const QString& name ) : GeoSceneAbstractDataset( name ), m_sourceDir( "" ), m_installMap( "" ), m_storageLayoutMode( Marble ), m_customStorageLayout( "" ), m_levelZeroColumns( defaultLevelZeroColumns ), m_levelZeroRows( defaultLevelZeroRows ), m_projection( Equirectangular ), m_downloadUrls(), m_nextUrl( m_downloadUrls.constEnd() ) { } QString GeoSceneTexture::sourceDir() const { return m_sourceDir; } void GeoSceneTexture::setSourceDir( const QString& sourceDir ) { m_sourceDir = sourceDir; } QString GeoSceneTexture::installMap() const { return m_installMap; } void GeoSceneTexture::setInstallMap( const QString& installMap ) { m_installMap = installMap; } GeoSceneTexture::StorageLayoutMode GeoSceneTexture::storageLayoutMode() const { return m_storageLayoutMode; } void GeoSceneTexture::setStorageLayoutMode( const StorageLayoutMode mode ) { m_storageLayoutMode = mode; } QString GeoSceneTexture::customStorageLayout()const { return m_customStorageLayout; } void GeoSceneTexture::setCustomStorageLayout( const QString& layout ) { m_customStorageLayout = layout; } int GeoSceneTexture::levelZeroColumns() const { return m_levelZeroColumns; } void GeoSceneTexture::setLevelZeroColumns( const int columns ) { m_levelZeroColumns = columns; } int GeoSceneTexture::levelZeroRows() const { return m_levelZeroRows; } void GeoSceneTexture::setLevelZeroRows( const int rows ) { m_levelZeroRows = rows; } GeoSceneTexture::Projection GeoSceneTexture::projection() const { return m_projection; } void GeoSceneTexture::setProjection( const Projection projection ) { m_projection = projection; } QUrl GeoSceneTexture::downloadUrl() { // default download url if ( m_downloadUrls.empty() ) return QUrl( "http://download.kde.org/apps/marble/" ); if ( m_nextUrl == m_downloadUrls.constEnd() ) m_nextUrl = m_downloadUrls.constBegin(); QUrl url = *m_nextUrl; ++m_nextUrl; return url; } void GeoSceneTexture::addDownloadUrl( const QUrl & url ) { m_downloadUrls.append( url ); // FIXME: this could be done only once m_nextUrl = m_downloadUrls.constBegin(); } QString GeoSceneTexture::type() { return "texture"; } }