mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
28 lines
449 B
C
28 lines
449 B
C
|
|
#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
|