-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdialog.h
More file actions
41 lines (33 loc) · 695 Bytes
/
dialog.h
File metadata and controls
41 lines (33 loc) · 695 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
#ifndef DIALOG_H
#define DIALOG_H
#include "mythread.h"
#include "game.h"
#include <QDialog>
#include <opencv/cv.h>
#include <opencv/cxcore.h>
#include <opencv/highgui.h>
#include <iostream>
#include <stdio.h>
namespace Ui {
class Dialog;
}
class Dialog : public QDialog
{
Q_OBJECT
public:
explicit Dialog(QWidget *parent = 0);
~Dialog();
MyThread *mThread;
Game game_window;
bool game;
void updateGraphicsView(QImage img);
private:
Ui::Dialog *ui;
public slots:
void onImageChanged(int Number, QImage img);
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_pushButton_3_clicked();
};
#endif // DIALOG_H