Document wxMediaState enum.

Closes #15760.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75397 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2013-12-18 16:00:38 +00:00
parent 19df537ca1
commit 3150676c08

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.}