MCPcopy Create free account
hub / github.com/OpenImageDebugger/OpenImageDebugger / AppSettings

Class AppSettings

src/host/settings/app_settings.h:44–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42};
43
44struct AppSettings {
45 int window_w{1024};
46 int window_h{768};
47 std::optional<int> window_x{};
48 std::optional<int> window_y{};
49 float left_pane_w{260.0f};
50 bool contrast_enabled{true};
51 bool link_views{false};
52 std::vector<PreviousBuffer> previous_buffers{};
53 std::string last_export_dir{};
54
55 friend bool operator==(const AppSettings&, const AppSettings&) = default;
56};
57
58} // namespace oid::host
59

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected