You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
477 B
34 lines
477 B
6 months ago
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
#include <QTimer>
|
||
|
#include <QImage>
|
||
|
|
||
|
namespace Ui {
|
||
|
class MainWindow;
|
||
|
}
|
||
|
|
||
|
class MainWindow : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MainWindow(QWidget *parent = 0);
|
||
|
~MainWindow();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
void on_pushButton_2_clicked();
|
||
|
|
||
|
void timeoutSlot();
|
||
|
|
||
|
private:
|
||
|
Ui::MainWindow *ui;
|
||
|
QTimer* timer;
|
||
|
QImage *img;
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|