diff options
Diffstat (limited to '')
-rw-r--r-- | xbmc/weather/GUIWindowWeather.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/xbmc/weather/GUIWindowWeather.h b/xbmc/weather/GUIWindowWeather.h new file mode 100644 index 0000000..1ae1828 --- /dev/null +++ b/xbmc/weather/GUIWindowWeather.h @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "guilib/GUIWindow.h" + +class CGUIWindowWeather : public CGUIWindow +{ +public: + CGUIWindowWeather(void); + ~CGUIWindowWeather(void) override; + bool OnMessage(CGUIMessage& message) override; + void FrameMove() override; + +protected: + void OnInitWindow() override; + + void UpdateButtons(); + void UpdateLocations(); + void SetProperties(); + void ClearProperties(); + void SetLocation(int loc); + + unsigned int m_maxLocation = 0; +}; |