mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-04 14:07:30 +00:00
PC Application: partial firmware update dialog
This commit is contained in:
parent
8c8749accd
commit
07ba714f1f
134 changed files with 13954 additions and 7 deletions
29
Software/PC_Application/Device/devicelog.h
Normal file
29
Software/PC_Application/Device/devicelog.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef DEVICELOG_H
|
||||
#define DEVICELOG_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
class DeviceLog;
|
||||
}
|
||||
|
||||
class DeviceLog : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DeviceLog(QWidget *parent = nullptr);
|
||||
~DeviceLog();
|
||||
|
||||
public slots:
|
||||
void addLine(QString line);
|
||||
void clear();
|
||||
|
||||
private slots:
|
||||
void on_bToFile_clicked();
|
||||
|
||||
private:
|
||||
Ui::DeviceLog *ui;
|
||||
};
|
||||
|
||||
#endif // DEVICELOG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue