diff options
author | Mavridis Philippe <mavridisf@gmail.com> | 2021-12-12 15:50:37 +0200 |
---|---|---|
committer | Mavridis Philippe <mavridisf@gmail.com> | 2022-01-14 12:39:01 +0200 |
commit | 6668b34bc5deb36e73aa45e0457ed6740f828efd (patch) | |
tree | f2ff95858cc06d5eaad187b6750717a58a175a60 /kweather/metar_parser.h | |
parent | 67e995b6fc4da17811aefb7c8d841c9812e4eec9 (diff) | |
download | tdetoys-6668b34bc5deb36e73aa45e0457ed6740f828efd.tar.gz tdetoys-6668b34bc5deb36e73aa45e0457ed6740f828efd.zip |
Implemented icon theme option.
Changes in this commit include:
* The option itself;
* A method of updating the option right after Apply or Ok is pressed
in the settings dialog;
* A new WeatherIconPrivate class to store the methods previously
in WeatherIcons, as well as the settings;
* Improved icon name helper function in METAR parser;
* A few cleanups to the WeatherIcon class.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'kweather/metar_parser.h')
-rw-r--r-- | kweather/metar_parser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kweather/metar_parser.h b/kweather/metar_parser.h index a5ab028..6a645d2 100644 --- a/kweather/metar_parser.h +++ b/kweather/metar_parser.h @@ -32,6 +32,8 @@ struct WeatherInfo { /** The current weather state outside */ TQString theWeather; + TQString iconName; + TQString iconPath; int clouds; float windMPH; float tempC; @@ -92,7 +94,7 @@ class MetarParser void calcCurrentIcon(); void calcWindChill(); bool isNight(const TQString &stationID) const; - TQString iconName( int condition, bool night, int strength = 0 ) const; + void getIcon( int condition, bool night, int strength = 0 ); /* * Reset the internal WeatherInfo struct of the class so that |