cut  1.2.1-pre1
mainwindow.hpp
Go to the documentation of this file.
1 
11 #ifndef MAINWINDOW_HPP
12 #define MAINWINDOW_HPP
13 
14 #include <QMainWindow>
15 #include <QColorDialog>
16 
17 namespace Ui {
18 class MainWindow;
19 }
20 
21 class MainWindow : public QMainWindow
22 {
23  Q_OBJECT
24 
25 public:
26  explicit MainWindow(QWidget *parent = nullptr);
28 
29 private slots:
30  void on_chooseColorPushButton_clicked();
31  void on_colorLineEdit_textChanged();
32 
33 private:
34  Ui::MainWindow *ui;
35 
36 };
37 
38 #endif // MAINWINDOW_HPP
MainWindow::~MainWindow
~MainWindow()
Ui
Definition: mainwindow.h:7
MainWindow
Definition: mainwindow.h:12
MainWindow::MainWindow
MainWindow(QWidget *parent=nullptr)