IQ.Pilot Release Commit @ 0b96bd5

This commit is contained in:
IQ.Lvbs CI [bot]
2026-09-02 16:46:45 -05:00
parent 4fb3da761f
commit 7745f48100
162 changed files with 12835 additions and 9476 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#include <string>
#include "tools/cabana/core/settings.h"
#include "tools/cabana/ui/util.h"
class SettingsDialog {
public:
void open();
void draw();
private:
void save();
bool open_ = false;
PopupOwner popup_;
int theme_ = 0;
int cached_minutes_ = 0;
int drag_direction_ = 0;
int chart_height_ = 0;
bool log_livestream_ = false;
std::string log_path_;
};