-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspheregui.h
50 lines (35 loc) · 809 Bytes
/
spheregui.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
#ifndef SPHEREGUI_H
#define SPHEREGUI_H
#include <QMainWindow>
#include <QtSerialPort/QSerialPortInfo>
#include <QFileDialog>
#include <QMessageBox>
#include <QKeyEvent>
#include "spherebot.h"
namespace Ui {
class SphereGui;
}
class SphereGui : public QMainWindow
{
Q_OBJECT
public:
explicit SphereGui(QWidget *parent = 0);
~SphereGui();
public slots:
void showPrintMessage(QString msg);
signals:
void continuePrinting();
private slots:
void serialSelected(QAction *action);
void disconnectSerial();
void on_btn_sendFile_clicked();
void on_btn_cancel_clicked();
void on_pushButton_clicked();
private:
Ui::SphereGui *ui;
SphereBot *bot;
QAction *action_disconnect;
protected:
void keyPressEvent(QKeyEvent *event);
};
#endif // SPHEREGUI_H