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.
11 #include "guilib/GUIDialog.h"
13 class CGUIDialogSeekBar
: public CGUIDialog
16 CGUIDialogSeekBar(void);
17 ~CGUIDialogSeekBar(void) override
;
18 bool OnMessage(CGUIMessage
& message
) override
;
19 void FrameMove() override
;
21 int GetProgress() const;
22 int GetEpgEventProgress() const;
23 int GetTimeshiftProgress() const;
25 int m_lastProgress
= 0;
26 int m_lastEpgEventProgress
= 0;
27 int m_lastTimeshiftProgress
= 0;