1
0
mirror of synced 2024-11-25 08:10:24 +01:00
ImHex/plugins/builtin/include/content/views/view_about.hpp

43 lines
1.0 KiB
C++
Raw Normal View History

2020-11-14 21:16:03 +01:00
#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/ui/view.hpp>
#include <hex/helpers/http_requests.hpp>
2020-11-14 21:16:03 +01:00
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
2020-11-14 21:16:03 +01:00
2022-03-04 19:06:29 +01:00
class ViewAbout : public View {
2020-11-14 21:16:03 +01:00
public:
2022-03-04 19:06:29 +01:00
ViewAbout();
2020-11-14 21:16:03 +01:00
void drawContent() override;
2020-11-14 21:16:03 +01:00
[[nodiscard]] bool isAvailable() const override { return true; }
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
[[nodiscard]] ImVec2 getMinSize() const override {
return scaled({ 700, 400 });
2021-01-23 00:46:50 +01:00
}
2020-11-14 21:16:03 +01:00
private:
bool m_aboutWindowOpen = false;
void drawAboutPopup();
void drawAboutMainPage();
void drawContributorPage();
void drawLibraryCreditsPage();
void drawPathsPage();
void drawReleaseNotesPage();
void drawCommitHistoryPage();
2022-01-22 23:11:28 +01:00
void drawLicensePage();
2022-01-23 20:46:19 +01:00
ImGui::Texture m_logoTexture;
std::future<HttpRequest::Result<std::string>> m_releaseNoteRequest, m_commitHistoryRequest;
u32 m_clickCount = 0;
2020-11-14 21:16:03 +01:00
};
}