mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
17 lines
No EOL
399 B
C++
17 lines
No EOL
399 B
C++
#pragma once
|
|
|
|
#include "imgui/imgui.h"
|
|
#include <string>
|
|
|
|
namespace style
|
|
{
|
|
extern ImFont *baseFont;
|
|
extern ImFont *bigFont;
|
|
extern ImFont *hugeFont;
|
|
|
|
bool setDefaultStyle(std::string resDir);
|
|
bool setLightStyle(std::string resDir, float dpi_scaling = 1.0f);
|
|
bool setDarkStyle(std::string resDir, float dpi_scaling = 1.0f);
|
|
void beginDisabled();
|
|
void endDisabled();
|
|
} |