-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
49 lines (40 loc) · 1.01 KB
/
mainwindow.cpp
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
#include <QIntValidator>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "solver.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
//fixed window side
setFixedSize(400, 465);
// Attempt at "validators" to limit inputs to 1-9
for (int i = 1; i <= 81; i++) {
QString objectName = QString("puzzle_%1").arg(i); // Corrected object name
QLineEdit *toCheck = findChild<QLineEdit *>(objectName);
if (toCheck) {
QIntValidator *validator = new QIntValidator(1, 9, this);
toCheck->setValidator(validator);
}
}
//set title
setWindowTitle("Sudoku Solver");
}
MainWindow::~MainWindow()
{
delete ui;
}
//solved button functions
void MainWindow::on_solveButton_clicked()
{
solver data;
data.readPuzzle(this);
data.generateSolution(this);
}
//clear button functions
void MainWindow::on_clearButton_clicked()
{
solver data;
data.clearPuzzle(this);
}