ifw-fcf  5.0.0-pre2
mainwindow.hpp
Go to the documentation of this file.
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
4 #include <QMainWindow>
5 #include <QColorDialog>
6 
7 namespace Ui {
8 class MainWindow;
9 }
10 
11 class MainWindow : public QMainWindow
12 {
13  Q_OBJECT
14 
15 public:
16  explicit MainWindow(QWidget *parent = nullptr);
17  ~MainWindow();
18 
19 private slots:
20  void on_chooseFlashColorButton1_clicked();
21 
22  void on_chooseFlashColorButton2_clicked();
23 
24  void on_chooseBgColor_1_clicked();
25 
26  void on_chooseFlashColorButton3_clicked();
27 
28  void on_chooseBgColor_2_clicked();
29 
30  void on_chooseFlashColorButton4_clicked();
31 
32  void on_chooseFlashColorButton1_3_clicked();
33 
34  void on_pushButton_clicked();
35 
36 private:
37  Ui::MainWindow *ui;
38 
39 };
40 
41 #endif // MAINWINDOW_H
Definition: mainwindow.hpp:12
MainWindow(QWidget *parent=nullptr)
Definition: mainwindow.cpp:8
~MainWindow()
Definition: mainwindow.cpp:16
Definition: mainwindow.hpp:7