/* * Copyright (C) 2007 Tobias Koenig * Copyright 2008 by Anne-Marie Mahfouf * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef APODPROVIDER_H #define APODPROVIDER_H #include "potdprovider.h" /** * This class provides the image for APOD * "Astronomy Picture Of the Day" * located at http://antwrp.gsfc.nasa.gov/apod. * Direct link to the picture of the day page is * http://antwrp.gsfc.nasa.gov/apod/apYYMMDD.html * where YY is the year last 2 digits, * MM is the month and DD the day, in 2 digits. */ class ApodProvider : public PotdProvider { Q_OBJECT public: /** * Creates a new APOD provider. * * @param date The date for which the image shall be fetched. * @param parent The parent object. */ ApodProvider( QObject *parent, const QVariantList &args ); /** * Destroys the APOD provider. */ ~ApodProvider(); /** * Returns the requested image. * * Note: This method returns only a valid image after the * finished() signal has been emitted. */ virtual QImage image() const; private: class Private; Private* const d; Q_PRIVATE_SLOT( d, void pageRequestFinished( KJob* ) ) Q_PRIVATE_SLOT( d, void imageRequestFinished( KJob* ) ) }; #endif