mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-19 06:42:43 +00:00
20 lines
393 B
C++
20 lines
393 B
C++
#pragma once
|
|
#include <imgui.h>
|
|
#include <string>
|
|
|
|
namespace style {
|
|
extern ImFont* baseFont;
|
|
extern ImFont* bigFont;
|
|
extern ImFont* hugeFont;
|
|
|
|
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();
|
|
} |