mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 15:33:51 +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
27
Software/PC_Application/Traces/bodeplotaxisdialog.h
Normal file
27
Software/PC_Application/Traces/bodeplotaxisdialog.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#ifndef BODEPLOTAXISDIALOG_H
|
||||
#define BODEPLOTAXISDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "tracebodeplot.h"
|
||||
|
||||
namespace Ui {
|
||||
class BodeplotAxisDialog;
|
||||
}
|
||||
|
||||
class BodeplotAxisDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit BodeplotAxisDialog(TraceBodePlot *plot);
|
||||
~BodeplotAxisDialog();
|
||||
|
||||
private slots:
|
||||
void on_buttonBox_accepted();
|
||||
|
||||
private:
|
||||
Ui::BodeplotAxisDialog *ui;
|
||||
TraceBodePlot *plot;
|
||||
};
|
||||
|
||||
#endif // BODEPLOTAXISDIALOG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue