X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fruler.cpp;h=87f5f9b08d3f831eb638fdc065bfbeaf82cf54d3;hp=160f1acbd9ce63babf15e337616502d6a28d7631;hb=17b1aa177651aae05bd94d3310ef7e8e25ec9899;hpb=25a0d47cfb287d16f72116e8c198d0e5867f8c20 diff --git a/pv/view/ruler.cpp b/pv/view/ruler.cpp index 160f1acb..87f5f9b0 100644 --- a/pv/view/ruler.cpp +++ b/pv/view/ruler.cpp @@ -28,7 +28,6 @@ #include "view.hpp" #include -#include using namespace Qt; @@ -52,14 +51,6 @@ Ruler::Ruler(View &parent) : this, SLOT(hover_point_changed())); } -void Ruler::clear_selection() -{ - const vector< shared_ptr > items(view_.time_items()); - for (auto &i : items) - i->select(false); - update(); -} - QSize Ruler::sizeHint() const { const int text_height = calculate_text_height(); @@ -76,7 +67,14 @@ QSize Ruler::extended_size_hint() const ViewItem::HighlightRadius); } -shared_ptr Ruler::get_mouse_over_item(const QPoint &pt) +vector< shared_ptr > Ruler::items() +{ + const vector< shared_ptr > time_items(view_.time_items()); + return vector< shared_ptr >( + time_items.begin(), time_items.end()); +} + +shared_ptr Ruler::get_mouse_over_item(const QPoint &pt) { const vector< shared_ptr > items(view_.time_items()); for (auto i = items.rbegin(); i != items.rend(); i++) @@ -93,20 +91,19 @@ void Ruler::paintEvent(QPaintEvent*) p.setRenderHint(QPainter::Antialiasing); const double tick_period = view_.tick_period(); - const unsigned int prefix = view_.tick_prefix(); // Draw the tick marks p.setPen(palette().color(foregroundRole())); const double minor_tick_period = tick_period / MinorTickSubdivision; - const double first_major_division = + const pv::util::Timestamp first_major_division = floor(view_.offset() / tick_period); - const double first_minor_division = + const pv::util::Timestamp first_minor_division = ceil(view_.offset() / minor_tick_period); - const double t0 = first_major_division * tick_period; + const pv::util::Timestamp t0 = first_major_division * tick_period; - int division = (int)round(first_minor_division - - first_major_division * MinorTickSubdivision) - 1; + int division = (round(first_minor_division - + first_major_division * MinorTickSubdivision)).convert_to() - 1; const int text_height = calculate_text_height(); const int ruler_height = RulerHeight * text_height; @@ -116,15 +113,16 @@ void Ruler::paintEvent(QPaintEvent*) double x; do { - const double t = t0 + division * minor_tick_period; - x = (t - view_.offset()) / view_.scale(); + const pv::util::Timestamp t = t0 + division * minor_tick_period; + x = ((t - view_.offset()) / view_.scale()).convert_to(); if (division % MinorTickSubdivision == 0) { // Draw a major tick p.drawText(x, ValueMargin, 0, text_height, AlignCenter | AlignTop | TextDontClip, - pv::util::format_time(t, prefix)); + util::format_time(t, view_.tick_prefix(), view_.time_unit(), + view_.tick_precision())); p.drawLine(QPointF(x, major_tick_y1), QPointF(x, ruler_height)); } @@ -136,7 +134,6 @@ void Ruler::paintEvent(QPaintEvent*) } division++; - } while (x < width()); // Draw the hover mark @@ -150,98 +147,17 @@ void Ruler::paintEvent(QPaintEvent*) // Draw the items const vector< shared_ptr > items(view_.time_items()); for (auto &i : items) { - const bool highlight = !dragging_ && + const bool highlight = !item_dragging_ && i->label_rect(r).contains(mouse_point_); i->paint_label(p, r, highlight); } } -void Ruler::mouseMoveEvent(QMouseEvent *e) -{ - mouse_point_ = e->pos(); - - if (!(e->buttons() & Qt::LeftButton)) - return; - - if ((e->pos() - mouse_down_point_).manhattanLength() < - QApplication::startDragDistance()) - return; - - // Do the drag - dragging_ = true; - - const int delta = e->pos().x() - mouse_down_point_.x(); - const vector< shared_ptr > items(view_.time_items()); - for (auto &i : items) - if (i->dragging()) - i->set_time(view_.offset() + - (i->drag_point().x() + delta - 0.5) * - view_.scale()); -} - -void Ruler::mousePressEvent(QMouseEvent *e) -{ - if (e->buttons() & Qt::LeftButton) { - mouse_down_point_ = e->pos(); - mouse_down_item_ = get_mouse_over_item(e->pos()); - - clear_selection(); - - if (mouse_down_item_) { - mouse_down_item_->select(); - mouse_down_item_->drag(); - } - - selection_changed(); - } -} - -void Ruler::mouseReleaseEvent(QMouseEvent *) -{ - using pv::widgets::Popup; - - if (!dragging_ && mouse_down_item_) { - Popup *const p = mouse_down_item_->create_popup(&view_); - if (p) { - const QPoint arrpos(mouse_down_item_->get_x(), - height() - ViewItem::HighlightRadius); - p->set_position(mapToGlobal(arrpos), Popup::Bottom); - p->show(); - } - } - - dragging_ = false; - mouse_down_item_.reset(); - - const vector< shared_ptr > items(view_.time_items()); - for (auto &i : items) - i->drag_release(); -} - -void Ruler::leaveEvent(QEvent*) -{ - mouse_point_ = QPoint(-1, -1); - update(); -} - void Ruler::mouseDoubleClickEvent(QMouseEvent *e) { view_.add_flag(view_.offset() + ((double)e->x() + 0.5) * view_.scale()); } -void Ruler::keyPressEvent(QKeyEvent *e) -{ - assert(e); - - if (e->key() == Qt::Key_Delete) - { - const vector< shared_ptr > items(view_.time_items()); - for (auto &i : items) - if (i->selected()) - i->delete_pressed(); - } -} - void Ruler::draw_hover_mark(QPainter &p, int text_height) { const int x = view_.hover_point().x();