1
0
mirror of synced 2025-01-30 03:27:25 +01:00
2023-11-21 13:47:50 +01:00

41 lines
1011 B
C++

#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/ui/view.hpp>
#include <hex/helpers/http_requests.hpp>
namespace hex::plugin::builtin {
class ViewAbout : public View::Modal {
public:
ViewAbout();
void drawContent() override;
[[nodiscard]] bool shouldDraw() const override { return true; }
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
[[nodiscard]] ImVec2 getMinSize() const override {
return scaled({ 700, 400 });
}
private:
void drawAboutPopup();
void drawAboutMainPage();
void drawContributorPage();
void drawLibraryCreditsPage();
void drawPathsPage();
void drawReleaseNotesPage();
void drawCommitHistoryPage();
void drawLicensePage();
ImGuiExt::Texture m_logoTexture;
std::future<HttpRequest::Result<std::string>> m_releaseNoteRequest, m_commitHistoryRequest;
u32 m_clickCount = 0;
};
}