mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-10 00:43:41 +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
28
Software/PC_Application/Device/manualcontroldialog.h
Normal file
28
Software/PC_Application/Device/manualcontroldialog.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#ifndef MANUALCONTROLDIALOG_H
|
||||
#define MANUALCONTROLDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "device.h"
|
||||
|
||||
namespace Ui {
|
||||
class ManualControlDialog;
|
||||
}
|
||||
|
||||
class ManualControlDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ManualControlDialog(Device &dev, QWidget *parent = nullptr);
|
||||
~ManualControlDialog();
|
||||
|
||||
public slots:
|
||||
void NewStatus(Protocol::ManualStatus status);
|
||||
|
||||
private:
|
||||
void UpdateDevice();
|
||||
Ui::ManualControlDialog *ui;
|
||||
Device &dev;
|
||||
};
|
||||
|
||||
#endif // MANUALCONTROLDIALOG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue