mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-09 17:57:11 +01:00
22 lines
420 B
C++
22 lines
420 B
C++
#pragma once
|
|
#include <imgui.h>
|
|
#include <string>
|
|
|
|
namespace style {
|
|
extern ImFont* baseFont;
|
|
extern ImFont* bigFont;
|
|
extern ImFont* hugeFont;
|
|
|
|
extern float uiScale;
|
|
|
|
bool setDefaultStyle(std::string resDir);
|
|
bool loadFonts(std::string resDir);
|
|
void beginDisabled();
|
|
void endDisabled();
|
|
void testtt();
|
|
}
|
|
|
|
namespace ImGui {
|
|
void LeftLabel(const char* text);
|
|
void FillWidth();
|
|
} |