1
0
mirror of synced 2025-02-02 20:37:18 +01:00
ImHex/plugins/ui/include/banners/banner_icon.hpp

24 lines
584 B
C++

#pragma once
#include <hex/ui/banner.hpp>
#include <imgui.h>
namespace hex::ui {
class BannerIcon : public Banner<BannerIcon> {
public:
BannerIcon(const char *icon, UnlocalizedString message, ImColor color)
: Banner(color), m_icon(icon), m_message(std::move(message)) { }
void drawContent() override {
ImGui::TextUnformatted(m_icon);
ImGui::SameLine(0, 10_scaled);
ImGui::TextUnformatted(Lang(m_message));
}
private:
const char *m_icon;
UnlocalizedString m_message;
};
}