-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.h
More file actions
37 lines (27 loc) · 706 Bytes
/
MainWindow.h
File metadata and controls
37 lines (27 loc) · 706 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
//
// Created by chudonghao on 2020/11/17.
//
#ifndef FASTNOISEPREVIEWAPPQT_4B315A382DD5403C810DE64B3440580A_H_
#define FASTNOISEPREVIEWAPPQT_4B315A382DD5403C810DE64B3440580A_H_
#include <QMainWindow>
namespace Ui {
class MainWindow;
} // namespace Ui
class MainWindow : public QMainWindow {
Q_OBJECT
public:
using Self = MainWindow;
using Super = QMainWindow;
public:
explicit MainWindow(QWidget *parent = nullptr);
protected:
void on_NoiseCanvas_PreviewChanged();
void on_SaveButton_Clicked();
void on_GithubButton_Clicked();
private:
using Ui = ::Ui::MainWindow;
private:
void callPreview();
Ui *ui{};
};
#endif // FASTNOISEPREVIEWAPPQT_4B315A382DD5403C810DE64B3440580A_H_