]> sigrok.org Git - pulseview.git/blobdiff - pv/mainwindow.cpp
Added palette of colours for different decode annotation types
[pulseview.git] / pv / mainwindow.cpp
index aa06601c3824a6c74eab2ad74b33e3a3155040aa..dc5f981f7b3a5207ab0bc777e1656e292d12784b 100644 (file)
@@ -391,8 +391,16 @@ void MainWindow::add_decoder(QObject *action)
        const std::vector< boost::shared_ptr<view::Signal> > &sigs =
                _session.get_signals();
 
-       dialogs::Decoder dlg(this, dec, sigs);
-       dlg.exec();
+       GHashTable *const options = g_hash_table_new_full(g_str_hash,
+               g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
+
+       dialogs::Decoder dlg(this, dec, sigs, options);
+       if(dlg.exec() != QDialog::Accepted) {
+               g_hash_table_destroy(options);
+               return;
+       }
+
+       _session.add_decoder(dec, dlg.get_probes(), options);
 }
 
 void MainWindow::run_stop()