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.
12 \file GUIVideoControl.h
16 #include "GUIControl.h"
22 class CGUIVideoControl
:
26 CGUIVideoControl(int parentID
, int controlID
, float posX
, float posY
, float width
, float height
);
27 ~CGUIVideoControl(void) override
;
28 CGUIVideoControl
* Clone() const override
{ return new CGUIVideoControl(*this); }
30 void Process(unsigned int currentTime
, CDirtyRegionList
&dirtyregions
) override
;
31 void Render() override
;
32 void RenderEx() override
;
33 EVENT_RESULT
OnMouseEvent(const CPoint
& point
, const KODI::MOUSE::CMouseEvent
& event
) override
;
34 bool CanFocus() const override
;
35 bool CanFocusFromPoint(const CPoint
&point
) const override
;