satdump/src-interface/style.h

17 lines
399 B
C
Raw Normal View History

#pragma once
2021-06-16 13:30:22 +02:00
#include "imgui/imgui.h"
#include <string>
2021-06-12 21:14:32 +02:00
namespace style
{
extern ImFont *baseFont;
extern ImFont *bigFont;
extern ImFont *hugeFont;
bool setDefaultStyle(std::string resDir);
2021-06-16 13:30:22 +02:00
bool setLightStyle(std::string resDir, float dpi_scaling = 1.0f);
bool setDarkStyle(std::string resDir, float dpi_scaling = 1.0f);
void beginDisabled();
void endDisabled();
}