X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/392751754e224616f01ce454830177b7a2b24b2b..c266eff98c5e44012647f54f38a1e29ecabd8759:/docs/latex/wx/sound.tex diff --git a/docs/latex/wx/sound.tex b/docs/latex/wx/sound.tex index fd48c22e87..6f4e0ee238 100644 --- a/docs/latex/wx/sound.tex +++ b/docs/latex/wx/sound.tex @@ -14,8 +14,13 @@ on Windows and Unix (and uses either +\wxheading{Library} + +\helpref{wxAdv}{librarieslist} + \latexignore{\rtfignore{\wxheading{Members}}} + \membersection{wxSound::wxSound}\label{wxsoundctor} \func{}{wxSound}{\void} @@ -24,8 +29,9 @@ Default constructor. \func{}{wxSound}{\param{const wxString\&}{ fileName}, \param{bool}{ isResource = false}} -Constructs a wave object from a file or resource. Call \helpref{wxSound::IsOk}{wxsoundisok} to -determine whether this succeeded. +Constructs a wave object from a file or, under Windows, from a Windows +resource. Call \helpref{wxSound::IsOk}{wxsoundisok} to determine whether this +succeeded. \wxheading{Parameters} @@ -33,12 +39,14 @@ determine whether this succeeded. \docparam{isResource}{\true if {\it fileName} is a resource, \false if it is a filename.} + \membersection{wxSound::\destruct{wxSound}}\label{wxsounddtor} \func{}{\destruct{wxSound}}{\void} Destroys the wxSound object. + \membersection{wxSound::Create}\label{wxsoundcreate} \func{bool}{Create}{\param{const wxString\&}{ fileName}, \param{bool}{ isResource = \false}} @@ -55,18 +63,23 @@ Constructs a wave object from a file or resource. \true if the call was successful, \false otherwise. + \membersection{wxSound::IsOk}\label{wxsoundisok} \constfunc{bool}{IsOk}{\void} Returns \true if the object contains a successfully loaded file or resource, \false otherwise. + \membersection{wxSound::IsPlaying}\label{wxsoundisplaying} \constfunc{static bool}{IsPlaying}{\void} Returns \true if a sound is played at the moment. +This method is currently not implemented under Windows. + + \membersection{wxSound::Play}\label{wxsoundplay} \constfunc{bool}{Play}{\param{unsigned }{ flags = wxSOUND\_ASYNC}} @@ -74,7 +87,10 @@ Returns \true if a sound is played at the moment. \func{static bool}{Play}{\param{const wxString\& }{filename}, \param{unsigned}{ flags = wxSOUND\_ASYNC}} Plays the sound file. If another sound is playing, it will be interrupted. -Returns \true on success, \false otherwise. +Returns \true on success, \false otherwise. Note that in general it is possible +to delete the object which is being asynchronously played any time after +calling this function and the sound would continue playing, however this +currently doesn't work under Windows for sound objects loaded from memory data. The possible values for \arg{flags} are: @@ -94,6 +110,7 @@ The static form is shorthand for this code: wxSound(filename).Play(flags); \end{verbatim} + \membersection{wxSound::Stop}\label{wxsoundstop} \func{static void}{Stop}{\void}