mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-05 06:25:16 +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/Traces/traceeditdialog.h
Normal file
29
Software/PC_Application/Traces/traceeditdialog.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef TRACEEDITDIALOG_H
|
||||
#define TRACEEDITDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "trace.h"
|
||||
|
||||
namespace Ui {
|
||||
class TraceEditDialog;
|
||||
}
|
||||
|
||||
class TraceEditDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit TraceEditDialog(Trace &t, QWidget *parent = nullptr);
|
||||
~TraceEditDialog();
|
||||
|
||||
private slots:
|
||||
void on_color_clicked();
|
||||
void on_buttonBox_accepted();
|
||||
|
||||
private:
|
||||
void setColor(QColor c);
|
||||
Ui::TraceEditDialog *ui;
|
||||
Trace &trace;
|
||||
};
|
||||
|
||||
#endif // TRACEEDITDIALOG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue