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/markerwidget.h
Normal file
29
Software/PC_Application/Traces/markerwidget.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef MARKERWIDGET_H
|
||||
#define MARKERWIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include "tracemarkermodel.h"
|
||||
|
||||
namespace Ui {
|
||||
class MarkerWidget;
|
||||
}
|
||||
|
||||
class MarkerWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MarkerWidget(TraceMarkerModel &model, QWidget *parent = nullptr);
|
||||
~MarkerWidget();
|
||||
|
||||
private slots:
|
||||
void on_bDelete_clicked();
|
||||
void on_bAdd_clicked();
|
||||
void updatePersistentEditors(Trace *dummy = nullptr);
|
||||
|
||||
private:
|
||||
Ui::MarkerWidget *ui;
|
||||
TraceMarkerModel &model;
|
||||
};
|
||||
|
||||
#endif // MARKERWIDGET_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue