MCPcopy Create free account
hub / github.com/Audio4Linux/JDSP4Linux / onAutoEqImportRequested

Method onAutoEqImportRequested

src/MainWindow.cpp:1223–1240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1221}
1222
1223void MainWindow::onAutoEqImportRequested()
1224{
1225 auto sel = new AeqSelector(this);
1226 sel->setModal(true);
1227
1228 if (sel->exec() == QDialog::Accepted)
1229 {
1230 auto graphicEq = sel->selection(AeqSelector::dGraphicEq);
1231
1232 if (!graphicEq.isEmpty())
1233 {
1234 ui->graphicEq->load(graphicEq);
1235 applyConfig();
1236 }
1237 }
1238
1239 sel->deleteLater();
1240}
1241
1242// GraphicEQ states
1243void MainWindow::restoreGraphicEQView()

Callers

nothing calls this directly

Calls 4

selectionMethod · 0.80
execMethod · 0.45
isEmptyMethod · 0.45
loadMethod · 0.45

Tested by

no test coverage detected