-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.h
More file actions
52 lines (39 loc) · 772 Bytes
/
mainwindow.h
File metadata and controls
52 lines (39 loc) · 772 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
45
46
47
48
49
50
51
52
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QtGui>
#include <QWidget>
#include <QMainWindow>
#include <QPushButton>
#include <QGroupBox>
#include <QGridLayout>
#include <QRadioButton>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
public slots:
void openTypesInfoWindow();
void openGenerateSudokuWindow();
private:
QWidget *SudokuInfoWindow;
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
#ifndef GENERATE_WINDOW
#define GENERATE_WINDOW
class GenerateWindow : public QWidget
{
Q_OBJECT
public:
// MyWidget();
protected:
void paintEvent(QPaintEvent *event);
signals:
public slots:
};
#endif // GENERATE_WINDOW