ui: Add interface scaling setting. Closes #7, #283

This commit is contained in:
WerWolv
2021-08-21 13:55:21 +02:00
parent 8ad0239bca
commit 72cf94106c
14 changed files with 140 additions and 39 deletions

View File

@@ -10,6 +10,13 @@ namespace hex {
struct ImHexApi {
ImHexApi() = delete;
struct Common {
static void closeImHex(bool noQuestions = false);
static void restartImHex();
};
struct Bookmarks {
Bookmarks() = delete;
@@ -27,6 +34,7 @@ namespace hex {
static std::list<Entry>& getEntries();
};
};
}