1
0
mirror of synced 2024-12-03 19:57:20 +01:00
ImHex/lib/libimhex/include/hex/api/layout_manager.hpp

35 lines
671 B
C++

#pragma once
#include <hex.hpp>
#include <hex/helpers/fs.hpp>
#include <string>
#include <variant>
#include <nlohmann/json_fwd.hpp>
#include <imgui.h>
namespace hex {
class LayoutManager {
public:
struct Layout {
std::string name;
std::fs::path path;
};
static void save(const std::string &name);
static void load(const std::fs::path &path);
static void loadString(const std::string &content);
static std::vector<Layout> getLayouts();
static void process();
static void reload();
static void reset();
private:
LayoutManager() = default;
};
}