mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-18 12:33:43 +08:00
6e0f4f4630
cabana: split SettingsDialog out of settings.{h,cc}
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;
|
|
};
|