kde-extraapps/kdeplasma-addons/libs/plasmaweather/weathervalidator.h
Ivailo Monev d42137e272 kdeplasma-addons: emit all valid sources from WeatherLocation
so that all default and validated sources can (potentially, eventually) be
shown in the configuration location widget

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-07-16 02:26:21 +03:00

85 lines
2.3 KiB
C++

/*
* Copyright (C) 2009 Petri Damstén <damu@iki.fi>
*
* This program 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, 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 WEATHERVALIDATOR_HEADER
#define WEATHERVALIDATOR_HEADER
#include <Plasma/DataEngine>
#include "plasmaweather_export.h"
/**
* @class WeatherValidator <plasmaweather/weathervalidator.h>
*
* @short Weather validator class
*/
class PLASMAWEATHER_EXPORT WeatherValidator : public QObject
{
Q_OBJECT
public:
WeatherValidator(QObject *parent = nullptr);
virtual ~WeatherValidator();
/**
* Validate location; plugin must already have been set
*
* @param location the name of the location to find
* @param silent if true don't show any dialogs
*/
void validate(const QString &location, bool silent = false);
/**
* Sets the ion to use
* @arg plugin the name of the ion
*/
void setIon(const QString &plugin);
/**
* @return the ion currently set to validate with
*/
QString ion() const;
/**
* Sets dataengine to use
*
* @param dataengine use this dataengine
**/
void setDataEngine(Plasma::DataEngine *dataengine);
Q_SIGNALS:
/**
* Emitted when an error in validation occurs
**/
void error(const QString &message);
/**
* Emitted when validation is done
* @arg sources a mapping of user-friendly names to the DataEngine source
**/
void finished(const QMap<QString, QString> &sources);
public Q_SLOTS:
void dataUpdated(const QString &source, const Plasma::DataEngine::Data &data);
private:
class Private;
Private * const d;
};
#endif