[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / windows / GUIWindowSystemInfo.h
blobe2fc50aed5b625b2fe25660586289bdf2fd85cb7
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "guilib/GUIWindow.h"
13 #include <string>
14 #include <vector>
16 class CGUIWindowSystemInfo : public CGUIWindow
18 public:
19 CGUIWindowSystemInfo(void);
20 ~CGUIWindowSystemInfo(void) override;
21 bool OnMessage(CGUIMessage& message) override;
22 void FrameMove() override;
23 private:
24 int m_section;
25 void ResetLabels();
26 void SetControlLabel(int id, const char *format, int label, int info);
27 std::vector<std::string> m_diskUsage;