]> sigrok.org Git - pulseview.git/commitdiff
View: Keep a list of owned traces in RowItemOwner
authorJoel Holdsworth <redacted>
Mon, 1 Sep 2014 21:46:34 +0000 (22:46 +0100)
committerJoel Holdsworth <redacted>
Wed, 19 Nov 2014 10:23:02 +0000 (10:23 +0000)
pv/view/header.cpp
pv/view/rowitemowner.cpp
pv/view/rowitemowner.h
pv/view/view.cpp
pv/view/view.h
pv/view/viewport.cpp

index 361a60c138208911ce5bf044c685f8d0c4a3d52a..5e978a70252565cf47f4a3bb95712707a813842d 100644 (file)
@@ -24,7 +24,8 @@
 #include "signal.h"
 #include "../sigsession.h"
 
-#include <assert.h>
+#include <cassert>
+#include <algorithm>
 
 #include <QApplication>
 #include <QMenu>
@@ -38,6 +39,7 @@ using std::max;
 using std::make_pair;
 using std::pair;
 using std::shared_ptr;
+using std::stable_sort;
 using std::vector;
 
 namespace pv {
@@ -112,7 +114,11 @@ void Header::paintEvent(QPaintEvent*)
        // left edge of the widget, because then the selection shadow
        // would be clipped away.
        const int w = width() - BaselineOffset;
-       const vector< shared_ptr<RowItem> > row_items(_view.child_items());
+
+       vector< shared_ptr<RowItem> > row_items(_view.child_items());
+       stable_sort(row_items.begin(), row_items.end(),
+               [](const shared_ptr<RowItem> &a, const shared_ptr<RowItem> &b) {
+                       return a->v_offset() < b->v_offset(); });
 
        QPainter painter(this);
        painter.setRenderHint(QPainter::Antialiasing);
index 3ef2782eb3ec62db7c2c1b46bd1a33b5e41edb38..d6150f89a90e5db497bf6f2eae4e5a09e7b69e80 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include <cassert>
+
+#include "rowitem.h"
 #include "rowitemowner.h"
+
+using std::shared_ptr;
+using std::vector;
+
+namespace pv {
+namespace view {
+
+const vector< shared_ptr<RowItem> >& RowItemOwner::child_items() const
+{
+       return _items;
+}
+
+void RowItemOwner::clear_child_items()
+{
+       for (auto &i : _items) {
+               assert(i->owner() == this);
+               i->set_owner(nullptr);
+       }
+       _items.clear();
+}
+
+void RowItemOwner::add_child_item(std::shared_ptr<RowItem> item)
+{
+       assert(!item->owner());
+       item->set_owner(this);
+       _items.push_back(item);
+}
+
+void RowItemOwner::remove_child_item(std::shared_ptr<RowItem> item)
+{
+       assert(item->owner() == this);
+       item->set_owner(nullptr);
+       auto iter = std::find(_items.begin(), _items.end(), item);
+       assert(iter != _items.end());
+       _items.erase(iter);
+}
+
+} // view
+} // pv
index 53e2e14fd798ee3943c619e20abbc91546fe100e..4b538e6d664fa34f0dc7caf2afcf610e21635772 100644 (file)
@@ -61,9 +61,28 @@ public:
        /**
         * Returns a list of row items owned by this object.
         */
-       virtual std::vector< std::shared_ptr<RowItem> > child_items() const = 0;
+       virtual const std::vector< std::shared_ptr<RowItem> >&
+               child_items() const;
+
+       /**
+        * Clears the list of child items.
+        */
+       void clear_child_items();
+
+       /**
+        * Adds a child item to this object.
+        */
+       void add_child_item(std::shared_ptr<RowItem> item);
+
+       /**
+        * Removes a child item from this object.
+        */
+       void remove_child_item(std::shared_ptr<RowItem> item);
 
        virtual void update_viewport() = 0;
+
+private:
+       std::vector< std::shared_ptr<RowItem> > _items;
 };
 
 } // view
index 7a55bbb3fd2776fc7c38afae05864a5e2649b683..fae74f8f5739600ab8ffedd5aee153b313d5e44b 100644 (file)
@@ -251,27 +251,6 @@ void View::set_scale_offset(double scale, double offset)
        scale_offset_changed();
 }
 
-vector< shared_ptr<RowItem> > View::child_items() const
-{
-       vector< shared_ptr<RowItem> > row_items;
-
-       const vector< shared_ptr<Signal> > sigs(
-               session().get_signals());
-       copy(sigs.begin(), sigs.end(), back_inserter(row_items));
-
-#ifdef ENABLE_DECODE
-       const vector< shared_ptr<DecodeTrace> > decode_sigs(
-               session().get_decode_signals());
-       copy(decode_sigs.begin(), decode_sigs.end(), back_inserter(row_items));
-#endif
-
-       stable_sort(row_items.begin(), row_items.end(),
-               [](const shared_ptr<RowItem> &a, const shared_ptr<RowItem> &b) {
-                       return a->v_offset() < b->v_offset(); });
-
-       return row_items;
-}
-
 list<weak_ptr<SelectableItem> > View::selected_items() const
 {
        list<weak_ptr<SelectableItem> > items;
@@ -279,8 +258,7 @@ list<weak_ptr<SelectableItem> > View::selected_items() const
        // List the selected signals
        const vector< shared_ptr<RowItem> > row_items(child_items());
        for (shared_ptr<RowItem> r : row_items) {
-               assert(r);
-               if (r->selected())
+               if (r && r->selected())
                        items.push_back(r);
        }
 
@@ -541,10 +519,24 @@ void View::v_scroll_value_changed(int value)
 
 void View::signals_changed()
 {
+       // Populate the traces
+       clear_child_items();
+
+       const vector< shared_ptr<Signal> > sigs(
+               session().get_signals());
+       for (auto s : sigs)
+               add_child_item(s);
+
+#ifdef ENABLE_DECODE
+       const vector< shared_ptr<DecodeTrace> > decode_sigs(
+               session().get_decode_signals());
+       for (auto s : decode_sigs)
+               add_child_item(s);
+#endif
+
+       // Create the initial layout
        int offset = SignalMargin + SignalHeight;
-       const vector< shared_ptr<RowItem> > row_items(child_items());
-       for (shared_ptr<RowItem> r : row_items) {
-               r->set_owner(this);
+       for (shared_ptr<RowItem> r : child_items()) {
                r->set_v_offset(offset);
                offset += SignalHeight + 2 * SignalMargin;
        }
index 5fbc0adef7eb463317ef2e14cba17c00bf2898e0..50fbcf1ce11e64ad47cf8a3d4137759f19a55408 100644 (file)
@@ -110,11 +110,6 @@ public:
         */
        void set_scale_offset(double scale, double offset);
 
-       /**
-        * Returns a list of traces owned by this object.
-        */
-       std::vector< std::shared_ptr<RowItem> > child_items() const;
-
        std::list<std::weak_ptr<SelectableItem> > selected_items() const;
 
        std::set< std::shared_ptr<pv::data::SignalData> >
index c987c3683164e598d9c1f94e8b0a88560ad33920..43da472890120e4eb01acfb59fdd14db0d716cc0 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <cassert>
 #include <cmath>
+#include <algorithm>
 
 #include "view.h"
 #include "viewport.h"
@@ -33,6 +34,7 @@ using std::abs;
 using std::max;
 using std::min;
 using std::shared_ptr;
+using std::stable_sort;
 using std::vector;
 
 namespace pv {
@@ -75,7 +77,10 @@ int Viewport::get_total_height() const
 
 void Viewport::paintEvent(QPaintEvent*)
 {
-       const vector< shared_ptr<RowItem> > row_items(_view.child_items());
+       vector< shared_ptr<RowItem> > row_items(_view.child_items());
+       stable_sort(row_items.begin(), row_items.end(),
+               [](const shared_ptr<RowItem> &a, const shared_ptr<RowItem> &b) {
+                       return a->v_offset() < b->v_offset(); });
 
        QPainter p(this);
        p.setRenderHint(QPainter::Antialiasing);