diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2011-10-16 04:42:30 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2011-10-16 04:42:30 +0200 |
commit | 4da9bced6a27b92d49b9fc9392946510b8519d82 (patch) | |
tree | 7a2417a932a6463e3e6f6ec4d3799e24de917306 /libsowatch/weathernotification.h | |
parent | bde4bde8ec9d6d09874d5ae9e0ba6dc9431859b6 (diff) | |
download | sowatch-4da9bced6a27b92d49b9fc9392946510b8519d82.tar.gz sowatch-4da9bced6a27b92d49b9fc9392946510b8519d82.zip |
Initial implementation of weather
Diffstat (limited to 'libsowatch/weathernotification.h')
-rw-r--r-- | libsowatch/weathernotification.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libsowatch/weathernotification.h b/libsowatch/weathernotification.h new file mode 100644 index 0000000..0b511b4 --- /dev/null +++ b/libsowatch/weathernotification.h @@ -0,0 +1,37 @@ +#ifndef SOWATCH_WEATHERNOTIFICATION_H +#define SOWATCH_WEATHERNOTIFICATION_H + +#include "notification.h" + +namespace sowatch +{ + +class WeatherNotification : public Notification +{ + Q_OBJECT +public: + explicit WeatherNotification(QObject *parent = 0); + + enum WeatherType { + UnknownWeather = 0, + Sunny, + Cloudy, + Rain, + Snow, + Thunderstorm + }; + + enum Unit { + UnknownUnit = 0, + Celsius, + Fahrenheit + }; + + virtual WeatherType forecast() = 0; + virtual int temperature() = 0; + virtual Unit temperatureUnits() = 0; +}; + +} + +#endif // WEATHERNOTIFICATION_H |