41 lines
850 B
C++
41 lines
850 B
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <imgui.h>
|
|
#include <hex/ui/view.hpp>
|
|
|
|
#include <vector>
|
|
#include <tuple>
|
|
#include <cstdio>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
class ViewAbout : public View {
|
|
public:
|
|
ViewAbout();
|
|
|
|
void drawContent() override;
|
|
|
|
[[nodiscard]] bool isAvailable() const override { return true; }
|
|
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
|
|
|
|
[[nodiscard]] ImVec2 getMinSize() const override {
|
|
return scaled({ 600, 350 });
|
|
}
|
|
|
|
private:
|
|
bool m_aboutWindowOpen = false;
|
|
|
|
void drawAboutPopup();
|
|
|
|
void drawAboutMainPage();
|
|
void drawContributorPage();
|
|
void drawLibraryCreditsPage();
|
|
void drawPathsPage();
|
|
void drawLicensePage();
|
|
|
|
ImGui::Texture m_logoTexture;
|
|
};
|
|
|
|
} |