]> sigrok.org Git - pulseview.git/commitdiff
Improved drag selection logic
authorJoel Holdsworth <redacted>
Sat, 17 Nov 2012 12:31:40 +0000 (12:31 +0000)
committerJoel Holdsworth <redacted>
Sat, 17 Nov 2012 12:34:31 +0000 (12:34 +0000)
pv/view/header.cpp
pv/view/header.h

index 976172137987e3780382a50a75e0eced462a2be7..e50d851f686d315bc584f5e92510218b85f3ad08 100644 (file)
@@ -114,23 +114,35 @@ void Header::mousePressEvent(QMouseEvent *event)
        if(~QApplication::keyboardModifiers() & Qt::ControlModifier) {
                // Unselect all other signals because the Ctrl is not
                // pressed
+               _drag_sigs.clear();
                BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
                        s->select(false);
        }
 
-       // Select the signal if it has been clicked
-       const shared_ptr<Signal> mouse_over_signal =
-               get_mouse_over_signal(event->pos());
-       if(mouse_over_signal)
-               mouse_over_signal->select(!mouse_over_signal->selected());
-
        if(event->button() & Qt::LeftButton) {
                _mouse_down_point = event->pos();
 
-               // Save the current signal offsets
+               // Save the offsets of any signals which will be dragged
                BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
-                       _mouse_down_signal_offsets[s.get()] =
-                               s->get_v_offset();
+                       if(s->selected())
+                               _drag_sigs.push_back(
+                                       make_pair(s, s->get_v_offset()));
+       }
+
+       // Select the signal if it has been clicked
+       const shared_ptr<Signal> mouse_over_signal =
+               get_mouse_over_signal(event->pos());
+       if(mouse_over_signal) {
+               if(mouse_over_signal->selected())
+                       mouse_over_signal->select(false);
+               else {
+                       mouse_over_signal->select(true);
+
+                       // Add the signal to the drag list
+                       _drag_sigs.push_back(
+                               make_pair(mouse_over_signal,
+                                       mouse_over_signal->get_v_offset()));
+               }
        }
 
        update();
@@ -140,7 +152,7 @@ void Header::mouseReleaseEvent(QMouseEvent *event)
 {
        assert(event);
        if(event->button() == Qt::LeftButton)
-               _mouse_down_signal_offsets.clear();
+               _drag_sigs.clear();
 }
 
 void Header::mouseMoveEvent(QMouseEvent *event)
@@ -149,22 +161,26 @@ void Header::mouseMoveEvent(QMouseEvent *event)
        _mouse_point = event->pos();
 
        // Move the signals if we are dragging
-       if(!_mouse_down_signal_offsets.empty()) {
-               const vector< shared_ptr<Signal> > &sigs =
-                       _view.session().get_signals();
+       if(!_drag_sigs.empty()) {
                const int delta = event->pos().y() - _mouse_down_point.y();
 
-               BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
-                       if(s->selected()) {
-                               const int y =
-                                       _mouse_down_signal_offsets[s.get()] +
-                                       delta;
+               for(std::list<std::pair<boost::weak_ptr<Signal>,
+                       int> >::iterator i = _drag_sigs.begin();
+                       i != _drag_sigs.end(); i++) {
+                       const boost::shared_ptr<Signal> sig((*i).first);
+                       if(sig) {
+                               const int y = (*i).second + delta;
                                const int y_snap =
                                        ((y + View::SignalSnapGridSize / 2) /
                                                View::SignalSnapGridSize) *
                                                View::SignalSnapGridSize;
-                               s->set_v_offset(y_snap  );
+                               sig->set_v_offset(y_snap);
+
+                               // Ensure the signal is selected
+                               sig->select();
                        }
+                       
+               }
 
                signals_moved();
        }
index ff058863c2d536a598b5b83a199801bd2ba9b1e5..35f16de1b36eb7bab29f69ca1cea801b0f7320bc 100644 (file)
 #define PULSEVIEW_PV_VIEW_HEADER_H
 
 #include <boost/shared_ptr.hpp>
+#include <boost/weak_ptr.hpp>
 
-#include <map>
+#include <list>
+#include <utility>
 
 #include <QWidget>
 
@@ -72,7 +74,8 @@ private:
        QPoint _mouse_point;
        QPoint _mouse_down_point;
 
-       std::map<const Signal*, int> _mouse_down_signal_offsets;
+       std::list<std::pair<boost::weak_ptr<Signal>, int> >
+               _drag_sigs;
 
        boost::shared_ptr<Signal> _context_signal;
        QAction *_action_set_name;