430139dc9f
Reviewed-on: #1 Co-authored-by: iris <iris.kaizen@pm.me> Co-committed-by: iris <iris.kaizen@pm.me>
23 lines
412 B
C++
23 lines
412 B
C++
#pragma once
|
|
#include <QWidget>
|
|
#include <QComboBox>
|
|
#include <QCheckBox>
|
|
#include <QVBoxLayout>
|
|
#include <QLabel>
|
|
#include <QSettings>
|
|
|
|
class CPUSettings final : public QWidget {
|
|
Q_OBJECT
|
|
QComboBox *types;
|
|
QCheckBox *idleSkip;
|
|
QVBoxLayout *v;
|
|
QHBoxLayout *h;
|
|
QSettings settings;
|
|
|
|
public:
|
|
explicit CPUSettings();
|
|
signals:
|
|
void cpuTypeChanged();
|
|
void idleSkipChanged();
|
|
};
|