mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-06 15:04:11 +00:00
additional signal when traces were imported
This commit is contained in:
parent
7926c49974
commit
f0669ab4c0
3 changed files with 18 additions and 3 deletions
|
|
@ -25,7 +25,7 @@ public:
|
|||
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
||||
|
||||
// adds all enabled traces to the model, deletes other traces
|
||||
void import(TraceModel &model);
|
||||
std::vector<Trace *> import(TraceModel &model);
|
||||
private:
|
||||
class Parameter {
|
||||
public:
|
||||
|
|
@ -50,6 +50,9 @@ private slots:
|
|||
void on_buttonBox_accepted();
|
||||
void on_tableView_doubleClicked(const QModelIndex &index);
|
||||
|
||||
signals:
|
||||
void importFinsished(const std::vector<Trace*> &traces);
|
||||
|
||||
private:
|
||||
Ui::TraceImportDialog *ui;
|
||||
TraceModel &model;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue