mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-04 14:07:30 +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
41
Software/PC_Application/Traces/tracewidget.h
Normal file
41
Software/PC_Application/Traces/tracewidget.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
#ifndef TRACEWIDGET_H
|
||||
#define TRACEWIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include "tracemodel.h"
|
||||
|
||||
namespace Ui {
|
||||
class TraceWidget;
|
||||
}
|
||||
|
||||
class TraceWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit TraceWidget(TraceModel &model, QWidget *parent = nullptr);
|
||||
~TraceWidget();
|
||||
|
||||
public slots:
|
||||
void on_add_clicked();
|
||||
|
||||
private slots:
|
||||
void on_remove_clicked();
|
||||
void on_edit_clicked();
|
||||
|
||||
void on_view_doubleClicked(const QModelIndex &index);
|
||||
|
||||
void on_view_clicked(const QModelIndex &index);
|
||||
|
||||
void on_bImport_clicked();
|
||||
|
||||
void on_bExport_clicked();
|
||||
|
||||
private:
|
||||
bool eventFilter(QObject *obj, QEvent *event) override;
|
||||
Ui::TraceWidget *ui;
|
||||
TraceModel &model;
|
||||
int createCount;
|
||||
};
|
||||
|
||||
#endif // TRACEWIDGET_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue