-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
58 lines (39 loc) · 1020 Bytes
/
mainwindow.h
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
53
54
55
56
57
58
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "timer.h"
#include "scrambler.h"
#include "db.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
protected:
void timerEvent(QTimerEvent *event);
void keyPressEvent(QKeyEvent *event);
void keyReleaseEvent(QKeyEvent *event);
private slots:
void on_Inspection_valueChanged(int arg1);
void on_NewScramble_clicked();
void on_Puzzle_currentIndexChanged(int index);
void on_ClearReults_clicked();
void on_DeleteRequested(int e);
void on_ResultAreaScrollDownRequest();
void on_AverageXPicker_valueChanged(int arg1);
void on_SuggestSrcamble(QString s);
private:
Ui::MainWindow *ui;
Timer timer;
Scrambler scrambler;
DB* db;
bool saved = false;
void clearResultArea();
void addToResultArea(Entry e);
void updateRecords();
};
#endif // MAINWINDOW_H