Public Slots | |
QString | returnMessage () |
void | play () |
void | stop () |
void | pause () |
Public Member Functions | |
AudioPlayer () | |
virtual | ~AudioPlayer () |
void | printMessage (QString msg) |
Public Attributes | |
QString | message |
This class provides the slots that connects with the signals in QML UI.This class will internally call the private class methods. The following operations on the file are performed here :
Definition at line 61 of file audioplayer.h.
AudioPlayer::AudioPlayer | ( | ) |
Description: User interface implementation for Audio player.
Constructs data member pointer of class AudioPlayerPrivate
Definition at line 50 of file audioplayer.cpp.
AudioPlayer::~AudioPlayer | ( | ) | [virtual] |
delete the private class object.
Definition at line 100 of file audioplayer.cpp.
void AudioPlayer::printMessage | ( | QString | msg | ) |
Populates message received from the engine
Definition at line 84 of file audioplayer.cpp.
QString AudioPlayer::returnMessage | ( | ) | [slot] |
Returns message
Definition at line 92 of file audioplayer.cpp.
void AudioPlayer::play | ( | ) | [slot] |
This method is used to play an audio file.
Definition at line 58 of file audioplayer.cpp.
void AudioPlayer::stop | ( | ) | [slot] |
This method is used to stop an audio file, which is playing.
Definition at line 67 of file audioplayer.cpp.
void AudioPlayer::pause | ( | ) | [slot] |
This method is used to pause an audio file, which is playing.
Definition at line 76 of file audioplayer.cpp.