34 lines
598 B
C++
34 lines
598 B
C++
#ifndef INNSTILLINGDIALOG_H
|
|
#define INNSTILLINGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QSettings>
|
|
#include <QtDebug>
|
|
|
|
namespace Ui {
|
|
class InnstillingDialog;
|
|
}
|
|
|
|
class InnstillingDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InnstillingDialog(QWidget *parent = nullptr);
|
|
~InnstillingDialog();
|
|
|
|
private slots:
|
|
void on_dialGul_sliderMoved(int position);
|
|
|
|
void on_dialRod_sliderMoved(int position);
|
|
|
|
void on_pushAvbryt_clicked();
|
|
|
|
void on_pushLagre_clicked();
|
|
|
|
private:
|
|
Ui::InnstillingDialog *ui;
|
|
};
|
|
|
|
#endif // INNSTILLINGDIALOG_H
|