-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
84 lines (60 loc) · 1.39 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QMessageBox>
#include <QPixmap>
#include "scoreboard.h"
#include "farm.h"
#include "Aviculture.h"
#include "Sheepcote.h"
#include "Dairyfarm.h"
#include "QProgressBar"
#include "wheatland2.h"
#include "dialogalfalfafield.h"
#include "dialogsilo.h"
#include "dialogstorage.h"
#include "store.h"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr,int shenaseP=1);
~MainWindow();
public slots :
void showLevel();
void showXp();
void showCoin();
private slots:
void on_pushButton_clicked();
void on_silo_clicked();
void on_pushButton_3_clicked();
void on_pushButton_2_clicked();
void on_garner_clicked();
void on_alfalfaLand_clicked();
void on_WheatLand_clicked();
void on_Aviculture_clicked();
void on_Dairyfarm_clicked();
void on_Sheepcote_clicked();
void on_shoewMessage_signal();
friend void runthread();
private:
Ui::MainWindow *ui;
Farm myfarm;
Aviculture *Avi;
Sheepcote *Sh;
Dairyfarm *Da;
QThread *Qt;
QThread *Qt2;
scoreboard *sc;
wheatland2 *wh;
DialogAlfalfaField *Alf;
DialogSilo * Sil;
DialogStorage * sto;
store * stor;
signals:
void showmessage();
};
#endif // MAINWINDOW_H