41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <hex/ui/popup.hpp>
|
|
|
|
#include <hex/api/localization_manager.hpp>
|
|
|
|
#include <string>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
class PopupBlockingTask : public Popup<PopupBlockingTask> {
|
|
public:
|
|
PopupBlockingTask(TaskHolder &&task) : hex::Popup<PopupBlockingTask>("hex.builtin.popup.blocking_task.title", false), m_task(std::move(task)) { }
|
|
|
|
void drawContent() override {
|
|
ImGui::TextUnformatted("hex.builtin.popup.blocking_task.desc"_lang);
|
|
ImGui::Separator();
|
|
|
|
if (m_task.getProgress() == 0)
|
|
ImGuiExt::TextSpinner("");
|
|
else
|
|
ImGui::ProgressBar(m_task.getProgress() / 100.0F);
|
|
|
|
ImGui::NewLine();
|
|
if (ImGui::ButtonEx("hex.ui.common.cancel"_lang, ImVec2(ImGui::GetContentRegionAvail().x, 0)) || ImGui::IsKeyDown(ImGuiKey_Escape))
|
|
m_task.interrupt();
|
|
|
|
if (!m_task.isRunning()) {
|
|
ImGui::CloseCurrentPopup();
|
|
}
|
|
}
|
|
|
|
[[nodiscard]] ImGuiWindowFlags getFlags() const override {
|
|
return ImGuiWindowFlags_NoResize | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoMove;
|
|
}
|
|
|
|
private:
|
|
TaskHolder m_task;
|
|
};
|
|
|
|
} |