-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphDialog2.h
More file actions
44 lines (35 loc) · 908 Bytes
/
GraphDialog2.h
File metadata and controls
44 lines (35 loc) · 908 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
39
40
41
42
43
44
#ifndef GRAPHDIALOG2_H
#define GRAPHDIALOG2_H
#include <QWidget>
#include <QMessageBox>
#include "minmaxdrawdialog.h"
namespace Ui {
class GraphDialog2;
}
class GraphDialog2 : public QWidget
{
Q_OBJECT
public:
explicit GraphDialog2(QWidget *parent = 0);
~GraphDialog2();
void showHint();
private:
Ui::GraphDialog2 *ui;
MinMaxDrawDialog *m_drawDialog;
public slots:
void setCondition(double **array, quint8 rows);
signals:
void next();
void back();
void result(QPointF, QPointF, qreal, qreal);
void userError();
private slots:
void on_nextButton_clicked();
void on_backButton_clicked();
void on_scaleSpinBox_valueChanged(double arg1);
void on_nextMinButton_clicked();
void on_nextMaxButton_clicked();
void replyUserError();
void replyResult(QPointF min, QPointF max, qreal minZ, qreal maxZ);
};
#endif // GRAPHDIALOG2_H