mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-18 12:33:43 +08:00
0b2c431d3a
version: sunnypilot v2026.003.000 (dev)
date: 2026-09-14T15:43:39
master commit: a5f44653d7
22 lines
422 B
C++
22 lines
422 B
C++
#pragma once
|
|
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QGroupBox>
|
|
#include <QLineEdit>
|
|
#include <QSpinBox>
|
|
|
|
class SettingsDialog : public QDialog {
|
|
public:
|
|
SettingsDialog(QWidget *parent);
|
|
void save();
|
|
QSpinBox *fps;
|
|
QSpinBox *cached_minutes;
|
|
QSpinBox *chart_height;
|
|
QComboBox *chart_series_type;
|
|
QComboBox *theme;
|
|
QGroupBox *log_livestream;
|
|
QLineEdit *log_path;
|
|
QComboBox *drag_direction;
|
|
};
|