2017-10-21 06:11:49 +01:00
|
|
|
#ifndef DEVICECONNECTEDDISPLAY_H
|
|
|
|
#define DEVICECONNECTEDDISPLAY_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
//deviceConnectedDisplay simply displays the "device connected" message.
|
|
|
|
|
|
|
|
class deviceConnectedDisplay : public QLabel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit deviceConnectedDisplay(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
void connectedStatusChanged(bool status);
|
2017-12-01 06:03:13 +00:00
|
|
|
void flashingFirmware(void);
|
2017-10-21 06:11:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEVICECONNECTEDDISPLAY_H
|