Kodi Documentation 22.0
Kodi is an open source media player and entertainment hub.
Loading...
Searching...
No Matches
Subclass - ControlVideoWindow

Used to embed the video window inside a group of other controls. More...

Classes

class  XBMCAddon::xbmcgui::ControlVideoWindow
 

Detailed Description

Used to embed the video window inside a group of other controls.

Class: ControlVideoWindow(x, y, width, height)

The video window control is a placeholder that shows the video output of the current playing video within an area of the skin, positioned and sized like any other control.

Note
This class include also all calls from Control
Parameters
xinteger - x coordinate of control.
yinteger - y coordinate of control.
widthinteger - width of control.
heightinteger - height of control.

Example:

...
self.videowindow = xbmcgui.ControlVideoWindow(100, 250, 125, 75)
...