forked from githubdoe/DFTFringe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefocusdlg.h
More file actions
38 lines (28 loc) · 695 Bytes
/
defocusdlg.h
File metadata and controls
38 lines (28 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef DEFOCUSDLG_H
#define DEFOCUSDLG_H
#include <QDialog>
namespace Ui {
class defocusDlg;
}
class defocusDlg : public QDialog
{
Q_OBJECT
double m_defocusInmm;
public:
explicit defocusDlg(QWidget *parent = nullptr);
~defocusDlg();
protected:
void closeEvent(QCloseEvent *event);
void moveEvent(QMoveEvent *event);
signals:
void defocus(double def);
private slots:
void on_multiplier_valueChanged(int arg1);
void on_defocusVal_valueChanged(double arg1);
void on_spinValue_valueChanged(double arg1);
void on_defocusSlider_valueChanged(int value);
void on_pushButton_clicked();
private:
Ui::defocusDlg *ui;
};
#endif // DEFOCUSDLG_H