You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
825 B
C++
42 lines
825 B
C++
#ifndef OPENMW_MWGUI_VIDEOWIDGET_H
|
|
#define OPENMW_MWGUI_VIDEOWIDGET_H
|
|
|
|
#include <MyGUI_ImageBox.h>
|
|
|
|
#include <extern/ogre-ffmpeg-videoplayer/videoplayer.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
/**
|
|
* Widget that plays a video.
|
|
*/
|
|
class VideoWidget : public MyGUI::ImageBox
|
|
{
|
|
public:
|
|
MYGUI_RTTI_DERIVED(VideoWidget)
|
|
|
|
VideoWidget();
|
|
|
|
void playVideo (const std::string& video);
|
|
|
|
int getVideoWidth();
|
|
int getVideoHeight();
|
|
|
|
/// @return Is the video still playing?
|
|
bool update();
|
|
|
|
/// Return true if a video is currently playing and it has an audio stream.
|
|
bool hasAudioStream();
|
|
|
|
/// Stop video and free resources (done automatically on destruction)
|
|
void stop();
|
|
|
|
private:
|
|
Video::VideoPlayer mPlayer;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|