osb/source/frontend/StarJoinRequestDialog.cpp
Kai Blaschke 431a9c00a5
Fixed a huge amount of Clang warnings
On Linux and macOS, using Clang to compile OpenStarbound produces about 400 MB worth of warnings during the build, making the compiler output unreadable and slowing the build down considerably.

99% of the warnings were unqualified uses of std::move and std::forward, which are now all properly qualified.

Fixed a few other minor warnings about non-virtual destructors and some uses of std::move preventing copy elision on temporary objects.

Most remaining warnings are now unused parameters.
2024-02-19 16:55:19 +01:00

53 lines
1.4 KiB
C++

#include "StarJoinRequestDialog.hpp"
#include "StarGuiReader.hpp"
#include "StarRoot.hpp"
#include "StarLabelWidget.hpp"
#include "StarButtonWidget.hpp"
#include "StarImageWidget.hpp"
#include "StarRandom.hpp"
#include "StarAssets.hpp"
namespace Star {
JoinRequestDialog::JoinRequestDialog() : m_confirmed(false) {}
void JoinRequestDialog::displayRequest(String const& userName, function<void(P2PJoinRequestReply)> callback) {
auto assets = Root::singleton().assets();
removeAllChildren();
GuiReader reader;
m_callback = std::move(callback);
reader.registerCallback("yes", [this](Widget*){ reply(P2PJoinRequestReply::Yes); });
reader.registerCallback("no", [this](Widget*){ reply(P2PJoinRequestReply::No); });
reader.registerCallback("ignore", [this](Widget*){ reply(P2PJoinRequestReply::Ignore); });
m_confirmed = false;
Json config = assets->json("/interface/windowconfig/joinrequest.config");
reader.construct(config.get("paneLayout"), this);
String message = config.getString("joinMessage").replaceTags(StringMap<String>{{"username", userName}});
fetchChild<LabelWidget>("message")->setText(message);
show();
}
void JoinRequestDialog::reply(P2PJoinRequestReply reply) {
m_confirmed = true;
m_callback(reply);
dismiss();
}
void JoinRequestDialog::dismissed() {
if (!m_confirmed)
m_callback(P2PJoinRequestReply::No);
Pane::dismissed();
}
}