mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
35 lines
820 B
C++
35 lines
820 B
C++
/*
|
|
* CPrologEpilogVideo.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include "../windows/CWindowObject.h"
|
|
|
|
#include "../../lib/campaign/CampaignScenarioPrologEpilog.h"
|
|
|
|
class CMultiLineLabel;
|
|
|
|
class CPrologEpilogVideo : public CWindowObject
|
|
{
|
|
CampaignScenarioPrologEpilog spe;
|
|
int positionCounter;
|
|
int voiceSoundHandle;
|
|
int videoSoundHandle;
|
|
std::function<void()> exitCb;
|
|
|
|
std::shared_ptr<CMultiLineLabel> text;
|
|
|
|
bool voiceStopped = false;
|
|
|
|
public:
|
|
CPrologEpilogVideo(CampaignScenarioPrologEpilog _spe, std::function<void()> callback);
|
|
|
|
void clickPressed(const Point & cursorPosition) override;
|
|
void show(Canvas & to) override;
|
|
};
|