blob: 65b1f54cd54a8ee3d0858c928c60fa143bd460f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include "StarPopupInterface.hpp"
#include "StarGuiReader.hpp"
#include "StarRoot.hpp"
#include "StarLabelWidget.hpp"
#include "StarRandom.hpp"
#include "StarAssets.hpp"
namespace Star {
PopupInterface::PopupInterface() {
auto assets = Root::singleton().assets();
GuiReader reader;
reader.registerCallback("close", [=](Widget*) { dismiss(); });
reader.registerCallback("ok", [=](Widget*) { dismiss(); });
reader.construct(assets->json("/interface/windowconfig/popup.config:paneLayout"), this);
}
void PopupInterface::displayMessage(String const& message, String const& title, String const& subtitle, Maybe<String> const& onShowSound) {
setTitleString(title, subtitle);
fetchChild<LabelWidget>("message")->setText(message);
show();
auto sound = onShowSound.value(Random::randValueFrom(Root::singleton().assets()->json("/interface/windowconfig/popup.config:onShowSound").toArray(), "").toString());
if (!sound.empty())
context()->playAudio(sound);
}
}
|