time domain markers

This commit is contained in:
Jan Käberich 2020-11-22 21:25:41 +01:00
parent c22d576984
commit 93bf7255c3
17 changed files with 505 additions and 185 deletions

View file

@ -23,6 +23,9 @@ void TraceModel::addTrace(Trace *t)
connect(t, &Trace::nameChanged, [=]() {
emit traceNameChanged(t);
});
connect(t, &Trace::changedTDRstate, [=](bool enabled) {
emit traceTDRstateChanged(t, enabled);
});
traces.push_back(t);
endInsertRows();
emit traceAdded(t);