| 42 | }; |
| 43 | |
| 44 | struct 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 |
nothing calls this directly
no outgoing calls
no test coverage detected