impr: Make unsaved changes popup behave more like in other applications

This commit is contained in:
WerWolv
2024-04-23 21:01:58 +02:00
parent 7ec245925a
commit fd61e757f0
9 changed files with 103 additions and 27 deletions

View File

@@ -54,4 +54,52 @@ namespace hex::ui {
std::function<void()> m_yesFunction, m_noFunction;
};
class PopupCancelableQuestion : public Popup<PopupCancelableQuestion> {
public:
PopupCancelableQuestion(std::string message, std::function<void()> yesFunction, std::function<void()> noFunction)
: hex::Popup<PopupCancelableQuestion>("hex.ui.common.question", false),
m_message(std::move(message)),
m_yesFunction(std::move(yesFunction)), m_noFunction(std::move(noFunction)) { }
void drawContent() override {
ImGuiExt::TextFormattedWrapped("{}", m_message.c_str());
ImGui::NewLine();
ImGui::Separator();
auto width = ImGui::GetWindowWidth();
ImGui::SetCursorPosX(width / 9);
if (ImGui::Button("hex.ui.common.yes"_lang, ImVec2(width / 3, 0))) {
m_yesFunction();
this->close();
}
ImGui::SameLine();
if (ImGui::Button("hex.ui.common.no"_lang, ImVec2(width / 3, 0))) {
m_noFunction();
this->close();
}
ImGui::SameLine();
if (ImGui::Button("hex.ui.common.cancel"_lang, ImVec2(width / 3, 0))) {
this->close();
}
ImGui::SetWindowPos((ImHexApi::System::getMainWindowSize() - ImGui::GetWindowSize()) / 2, ImGuiCond_Appearing);
}
[[nodiscard]] ImGuiWindowFlags getFlags() const override {
return ImGuiWindowFlags_AlwaysAutoResize;
}
[[nodiscard]] ImVec2 getMinSize() const override {
return scaled({ 400, 100 });
}
[[nodiscard]] ImVec2 getMaxSize() const override {
return scaled({ 600, 300 });
}
private:
std::string m_message;
std::function<void()> m_yesFunction, m_noFunction;
};
}