X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;h=4b5fe245e0c11a9c6af77fdd038201d4427e997e;hp=0e0ae8ae4ad0807f5b99abe1f31ca458f437af94;hb=c063290ac7189bdd15221450f598504f43286b43;hpb=38eeddeab105aea3f8015dda5399ebbead21550a diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp index 0e0ae8ae..4b5fe245 100644 --- a/pv/view/viewport.cpp +++ b/pv/view/viewport.cpp @@ -14,94 +14,190 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#include "view.h" -#include "viewport.h" +#include +#include +#include +#include -#include "signal.h" -#include "../sigsession.h" +#include "signal.hpp" +#include "view.hpp" +#include "viewitempaintparams.hpp" +#include "viewport.hpp" + +#include #include -#include +#include -using namespace boost; -using namespace std; +using std::abs; +using std::back_inserter; +using std::copy; +using std::dynamic_pointer_cast; +using std::none_of; // Used in assert()s. +using std::shared_ptr; +using std::stable_sort; +using std::vector; namespace pv { -namespace view { +namespace views { +namespace TraceView { Viewport::Viewport(View &parent) : - QWidget(&parent), - _view(parent) + ViewWidget(parent), + pinch_zoom_active_(false) { - setMouseTracking(true); setAutoFillBackground(true); setBackgroundRole(QPalette::Base); +} + +shared_ptr Viewport::get_mouse_over_item(const QPoint &pt) +{ + const ViewItemPaintParams pp(rect(), view_.scale(), view_.offset()); + const vector< shared_ptr > items(this->items()); + for (auto i = items.rbegin(); i != items.rend(); i++) + if ((*i)->enabled() && (*i)->hit_box_rect(pp).contains(pt)) + return *i; + return nullptr; +} + +void Viewport::item_hover(const shared_ptr &item) +{ + if (item && item->is_draggable()) + setCursor(dynamic_pointer_cast(item) ? + Qt::SizeVerCursor : Qt::SizeHorCursor); + else + unsetCursor(); +} + +void Viewport::drag() +{ + drag_offset_ = view_.offset(); + drag_v_offset_ = view_.owner_visual_v_offset(); +} + +void Viewport::drag_by(const QPoint &delta) +{ + if (drag_offset_ == boost::none) + return; + + view_.set_scale_offset(view_.scale(), + (*drag_offset_ - delta.x() * view_.scale())); + + view_.set_v_offset(-drag_v_offset_ - delta.y()); +} - connect(&_view, SIGNAL(signals_moved()), - this, SLOT(on_signals_moved())); +void Viewport::drag_release() +{ + drag_offset_ = boost::none; +} + +vector< shared_ptr > Viewport::items() +{ + vector< shared_ptr > items; + const vector< shared_ptr > view_items( + view_.list_by_type()); + copy(view_items.begin(), view_items.end(), back_inserter(items)); + const vector< shared_ptr > time_items(view_.time_items()); + copy(time_items.begin(), time_items.end(), back_inserter(items)); + return items; } -int Viewport::get_total_height() const +bool Viewport::touch_event(QTouchEvent *event) { - int h = 0; - const vector< shared_ptr > traces(_view.get_traces()); - BOOST_FOREACH(const shared_ptr t, traces) { - assert(t); - h = max(t->get_v_offset() + View::SignalHeight, h); + QList touchPoints = event->touchPoints(); + + if (touchPoints.count() != 2) { + pinch_zoom_active_ = false; + return false; + } + + const QTouchEvent::TouchPoint &touchPoint0 = touchPoints.first(); + const QTouchEvent::TouchPoint &touchPoint1 = touchPoints.last(); + + if (!pinch_zoom_active_ || + (event->touchPointStates() & Qt::TouchPointPressed)) { + pinch_offset0_ = (view_.offset() + view_.scale() * touchPoint0.pos().x()).convert_to(); + pinch_offset1_ = (view_.offset() + view_.scale() * touchPoint1.pos().x()).convert_to(); + pinch_zoom_active_ = true; + } + + double w = touchPoint1.pos().x() - touchPoint0.pos().x(); + if (abs(w) >= 1.0) { + const double scale = + fabs((pinch_offset1_ - pinch_offset0_) / w); + double offset = pinch_offset0_ - touchPoint0.pos().x() * scale; + if (scale > 0) + view_.set_scale_offset(scale, offset); + } + + if (event->touchPointStates() & Qt::TouchPointReleased) { + pinch_zoom_active_ = false; + + if (touchPoint0.state() & Qt::TouchPointReleased) { + // Primary touch released + drag_release(); + } else { + // Update the mouse down fields so that continued + // dragging with the primary touch will work correctly + mouse_down_point_ = touchPoint0.pos().toPoint(); + drag(); + } } - return h; + return true; } void Viewport::paintEvent(QPaintEvent*) { - const vector< shared_ptr > traces(_view.get_traces()); + vector< shared_ptr > row_items(view_.list_by_type()); + assert(none_of(row_items.begin(), row_items.end(), + [](const shared_ptr &r) { return !r; })); + + stable_sort(row_items.begin(), row_items.end(), + [](const shared_ptr &a, const shared_ptr &b) { + return a->point(QRect()).y() < b->point(QRect()).y(); }); + + const vector< shared_ptr > time_items(view_.time_items()); + assert(none_of(time_items.begin(), time_items.end(), + [](const shared_ptr &t) { return !t; })); QPainter p(this); p.setRenderHint(QPainter::Antialiasing); - if (_view.cursors_shown()) - _view.cursors().draw_viewport_background(p, rect()); + const ViewItemPaintParams pp(rect(), view_.scale(), view_.offset()); - // Plot the signal - const int v_offset = _view.v_offset(); - BOOST_FOREACH(const shared_ptr t, traces) - { - assert(t); - t->paint(p, t->get_v_offset() - v_offset, 0, width(), - _view.scale(), _view.offset()); - } + for (const shared_ptr t : time_items) + t->paint_back(p, pp); + for (const shared_ptr r : row_items) + r->paint_back(p, pp); - if (_view.cursors_shown()) - _view.cursors().draw_viewport_foreground(p, rect()); + for (const shared_ptr t : time_items) + t->paint_mid(p, pp); + for (const shared_ptr r : row_items) + r->paint_mid(p, pp); - p.end(); -} + for (const shared_ptr r : row_items) + r->paint_fore(p, pp); -void Viewport::mousePressEvent(QMouseEvent *event) -{ - assert(event); + p.setRenderHint(QPainter::Antialiasing, false); + for (const shared_ptr t : time_items) + t->paint_fore(p, pp); - _mouse_down_point = event->pos(); - _mouse_down_offset = _view.offset(); + p.end(); } -void Viewport::mouseMoveEvent(QMouseEvent *event) +void Viewport::mouseDoubleClickEvent(QMouseEvent *event) { assert(event); if (event->buttons() & Qt::LeftButton) - { - _view.set_scale_offset(_view.scale(), - _mouse_down_offset + - (_mouse_down_point - event->pos()).x() * - _view.scale()); - } + view_.zoom(2.0, event->x()); + else if (event->buttons() & Qt::RightButton) + view_.zoom(-2.0, event->x()); } void Viewport::wheelEvent(QWheelEvent *event) @@ -109,20 +205,22 @@ void Viewport::wheelEvent(QWheelEvent *event) assert(event); if (event->orientation() == Qt::Vertical) { - // Vertical scrolling is interpreted as zooming in/out - _view.zoom(event->delta() / 120, event->x()); + if (event->modifiers() & Qt::ControlModifier) { + // Vertical scrolling with the control key pressed + // is intrepretted as vertical scrolling + view_.set_v_offset(-view_.owner_visual_v_offset() - + (event->delta() * height()) / (8 * 120)); + } else { + // Vertical scrolling is interpreted as zooming in/out + view_.zoom(event->delta() / 120, event->x()); + } } else if (event->orientation() == Qt::Horizontal) { // Horizontal scrolling is interpreted as moving left/right - _view.set_scale_offset(_view.scale(), - event->delta() * _view.scale() - + _view.offset()); + view_.set_scale_offset(view_.scale(), + event->delta() * view_.scale() + view_.offset()); } } -void Viewport::on_signals_moved() -{ - update(); -} - -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv