Document wxMediaState enum.

Closes #15760.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75393 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-12-18 16:00:06 +00:00
parent 75ef80751d
commit 09bdd20bb7

View File

@@ -5,6 +5,22 @@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
Describes the current state of the media.
@see wxMediaCtrl::GetState()
*/
enum wxMediaState
{
/** No media is being currently played. */
wxMEDIASTATE_STOPPED,
/** Current media is paused. */
wxMEDIASTATE_PAUSED,
/** There is media currently playing. */
wxMEDIASTATE_PLAYING
};
enum wxMediaCtrlPlayerControls
{
@@ -306,7 +322,7 @@ public:
double GetPlaybackRate();
/**
Obtains the state the playback of the media is in -
Obtains the state the playback of the media is in.
@beginTable
@row2col{wxMEDIASTATE_STOPPED, The movie has stopped.}