1
0
mirror of synced 2024-12-01 18:57:18 +01:00
ImHex/plugins/builtin/include/content/views/view_theme_manager.hpp

28 lines
661 B
C++
Raw Normal View History

#pragma once
#include <hex/ui/view.hpp>
#include <string>
namespace hex::plugin::builtin {
class ViewThemeManager : public View {
public:
ViewThemeManager();
~ViewThemeManager() override = default;
void drawContent() override;
[[nodiscard]] bool isAvailable() const override { return true; }
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
private:
std::string m_themeName;
bool m_viewOpen = false;
std::optional<ImColor> m_startingColor;
std::optional<u32> m_hoveredColorId;
std::optional<std::string> m_hoveredHandlerName;
};
}