]> sigrok.org Git - pulseview.git/commitdiff
DecodeSelector: Use custom treeview to hook into selection changes
authorSoeren Apel <redacted>
Sun, 10 Mar 2019 10:23:04 +0000 (11:23 +0100)
committerSoeren Apel <redacted>
Tue, 12 Mar 2019 07:57:31 +0000 (08:57 +0100)
pv/subwindows/decoder_selector/subwindow.cpp
pv/subwindows/decoder_selector/subwindow.hpp

index 781e494fbc85d5196bcb823cd63098db6d123df9..f669146d56eab408c4a33548340cabf23fdc900d 100644 (file)
@@ -36,10 +36,18 @@ namespace subwindows {
 namespace decoder_selector {
 
 
 namespace decoder_selector {
 
 
+void QCustomTreeView::currentChanged(const QModelIndex& current,
+       const QModelIndex& previous)
+{
+       QTreeView::currentChanged(current, previous);
+       currentChanged(current);
+}
+
+
 SubWindow::SubWindow(Session& session, QWidget* parent) :
        SubWindowBase(session, parent),
        splitter_(new QSplitter()),
 SubWindow::SubWindow(Session& session, QWidget* parent) :
        SubWindowBase(session, parent),
        splitter_(new QSplitter()),
-       tree_view_(new QTreeView()),
+       tree_view_(new QCustomTreeView()),
        info_box_(new QWidget()),
        info_label_header_(new QLabel()),
        info_label_body_(new QLabel()),
        info_box_(new QWidget()),
        info_label_header_(new QLabel()),
        info_label_body_(new QLabel()),
@@ -68,10 +76,10 @@ SubWindow::SubWindow(Session& session, QWidget* parent) :
        info_label_body_->setWordWrap(true);
        info_label_body_->setText(tr("Select a decoder to see its description here."));
 
        info_label_body_->setWordWrap(true);
        info_label_body_->setText(tr("Select a decoder to see its description here."));
 
-       connect(tree_view_, SIGNAL(clicked(const QModelIndex&)),
-               this, SLOT(on_item_clicked(const QModelIndex&)));
-       connect(tree_view_, SIGNAL(doubleClicked(const QModelIndex&)),
-               this, SLOT(on_item_double_clicked(const QModelIndex&)));
+       connect(tree_view_, SIGNAL(currentChanged(const QModelIndex&)),
+               this, SLOT(on_item_changed(const QModelIndex&)));
+       connect(tree_view_, SIGNAL(activated(const QModelIndex&)),
+               this, SLOT(on_item_activated(const QModelIndex&)));
 
        connect(this, SIGNAL(new_decoders_selected(vector<const srd_decoder*>)),
                &session, SLOT(on_new_decoders_selected(vector<const srd_decoder*>)));
 
        connect(this, SIGNAL(new_decoders_selected(vector<const srd_decoder*>)),
                &session, SLOT(on_new_decoders_selected(vector<const srd_decoder*>)));
@@ -141,7 +149,7 @@ vector<const srd_decoder*> SubWindow::decoders_providing(const char* output) con
        return ret_val;
 }
 
        return ret_val;
 }
 
-void SubWindow::on_item_clicked(const QModelIndex& index)
+void SubWindow::on_item_changed(const QModelIndex& index)
 {
        if (!index.isValid())
                return;
 {
        if (!index.isValid())
                return;
@@ -175,7 +183,7 @@ void SubWindow::on_item_clicked(const QModelIndex& index)
        info_label_footer_->setText(tr("<p align='right'>Tags: %1</p>").arg(tags));
 }
 
        info_label_footer_->setText(tr("<p align='right'>Tags: %1</p>").arg(tags));
 }
 
-void SubWindow::on_item_double_clicked(const QModelIndex& index)
+void SubWindow::on_item_activated(const QModelIndex& index)
 {
        if (!index.isValid())
                return;
 {
        if (!index.isValid())
                return;
index baeedd36dad343a7247a8bdf53be2b2643c49916..4434f0a610bcd2030e867acc598b5417eb3184c4 100644 (file)
@@ -84,6 +84,17 @@ private:
 };
 
 
 };
 
 
+class QCustomTreeView : public QTreeView
+{
+       Q_OBJECT
+
+public:
+       void currentChanged(const QModelIndex& current, const QModelIndex& previous);
+
+Q_SIGNALS:
+       void currentChanged(const QModelIndex& current);
+};
+
 class SubWindow : public SubWindowBase
 {
        Q_OBJECT
 class SubWindow : public SubWindowBase
 {
        Q_OBJECT
@@ -112,12 +123,12 @@ Q_SIGNALS:
        void new_decoders_selected(vector<const srd_decoder*> decoders);
 
 public Q_SLOTS:
        void new_decoders_selected(vector<const srd_decoder*> decoders);
 
 public Q_SLOTS:
-       void on_item_clicked(const QModelIndex& index);
-       void on_item_double_clicked(const QModelIndex& index);
+       void on_item_changed(const QModelIndex& index);
+       void on_item_activated(const QModelIndex& index);
 
 private:
        QSplitter* splitter_;
 
 private:
        QSplitter* splitter_;
-       QTreeView* tree_view_;
+       QCustomTreeView* tree_view_;
        QWidget* info_box_;
        QLabel* info_label_header_;
        QLabel* info_label_body_;
        QWidget* info_box_;
        QLabel* info_label_header_;
        QLabel* info_label_body_;