[WASAPI] fix stream types and frequencies enumeration
[xbmc.git] / xbmc / guilib / GUIVideoControl.dox
blob24a20426dfe331a9b1b39745e5cf471e72f7276c
1 /*!
3 \page Video_Control Video Control
4 \brief **Used to display the currently playing video whilst in the GUI.**
6 \tableofcontents
8 The videowindow control is used for displaying the currently playing video
9 elsewhere in the Kodi GUI. You can choose the position, and size of the video
10 displayed. Note that the control is only rendered if video is being played.
13 --------------------------------------------------------------------------------
14 \section Video_Control_sect1 Example
16 ~~~~~~~~~~~~~
17 <control type="videowindow" id="2">
18       <description>My first video control</description>
19       <posx>80</posx>
20       <posy>60</posy>
21       <width>250</width>
22       <height>200</height>
23       <visible>true</visible>
24 </control>
25 ~~~~~~~~~~~~~
28 --------------------------------------------------------------------------------
29 \section Video_Control_sect2 Available tags
31 Only the [default control](http://kodi.wiki/view/Default_Control_Tags) tags are applicable to this control.
34 --------------------------------------------------------------------------------
35 \section Video_Control_sect3 See also
37 #### Development:
39 - [Add-on development](http://kodi.wiki/view/Add-on_development)
40 - [Skinning](http://kodi.wiki/view/Skinning)