X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fview%2Fdecodetrace.cpp;h=fb4b7c29844fa5be0cc35b23fd45db6f50d8ea45;hb=db1bf6bf5a76726631b521b1c6b3968d14d66b30;hp=e290e55fe2ae68fa72c0f9cfefae29e371c5d72c;hpb=c294543f8df3b3c90fa613c8198506aea68e91e7;p=pulseview.git diff --git a/pv/view/decodetrace.cpp b/pv/view/decodetrace.cpp index e290e55f..fb4b7c29 100644 --- a/pv/view/decodetrace.cpp +++ b/pv/view/decodetrace.cpp @@ -45,6 +45,7 @@ extern "C" { #include #include #include +#include #include #include @@ -531,108 +532,92 @@ double DecodeTrace::get_samples_per_pixel() const return samplerate * scale; } -pair DecodeTrace::get_sample_range(int x_start, int x_end) const +pair DecodeTrace::get_sample_range( + int x_start, int x_end) const { - assert(_view); - assert(_decoder_stack); - const double samples_per_pixel = get_samples_per_pixel(); const double pixels_offset = get_pixels_offset(); - uint64_t start, end; - - start = (uint64_t)max((x_start + pixels_offset) * samples_per_pixel, 0.0); - end = (uint64_t)max((x_end + pixels_offset) * samples_per_pixel, 0.0); + const uint64_t start = (uint64_t)max( + (x_start + pixels_offset) * samples_per_pixel, 0.0); + const uint64_t end = (uint64_t)max( + (x_end + pixels_offset) * samples_per_pixel, 0.0); return make_pair(start, end); } -bool DecodeTrace::hover_point_is_over_trace() -{ - assert(_view); - assert(_row_height); - - // Note: if _row_height is valid then _cur_row_headings is valid, too, - // as both are set in paint_mid(). - - // Note: hp.x will be 0 if the cursor is above the header area, - // so we set trace.left to 1 to exclude this. - - QRect trace(1, get_y() - (_row_height/2), - _view->width(), _row_height * _visible_rows.size()); - - // Note: We don't need to check for _row_height being 0 here but - // we do it anyway to be more robust. - - return _row_height && enabled() && trace.contains(_view->hover_point()); -} - -int DecodeTrace::get_row_at_hover_point() +int DecodeTrace::get_row_at_point(const QPoint &point) { - assert(_view); - assert(_row_height); - assert(_decoder_stack); + if (!_row_height) + return -1; - QPoint hp = _view->hover_point(); - int hover_row = (hp.y() - get_y() + (_row_height/2)) / _row_height; + const int row = (point.y() - get_y() + _row_height / 2) / _row_height; + if (row < 0 || row >= (int)_visible_rows.size()) + return -1; - return min(hover_row, (int)_visible_rows.size() - 1); + return row; } -const QString DecodeTrace::get_annotation_at_hover_point() +const QString DecodeTrace::get_annotation_at_point(const QPoint &point) { using namespace pv::data::decode; - assert(_view); - QPoint hp = _view->hover_point(); + if (!enabled()) + return QString(); - pair sample_range = get_sample_range(hp.x(), hp.x() + 1); - - const int hover_row = get_row_at_hover_point(); + const pair sample_range = + get_sample_range(point.x(), point.x() + 1); + const int row = get_row_at_point(point); + if (row < 0) + return QString(); vector annotations; assert(_decoder_stack); - _decoder_stack->get_annotation_subset(annotations, _visible_rows[hover_row], + _decoder_stack->get_annotation_subset(annotations, _visible_rows[row], sample_range.first, sample_range.second); return (annotations.empty()) ? QString() : annotations[0].annotations().front(); } -void DecodeTrace::show_hover_annotation() +void DecodeTrace::hide_hover_annotation() { - QString ann = get_annotation_at_hover_point(); + QToolTip::hideText(); +} + +void DecodeTrace::hover_point_changed() +{ + QPoint hp = _view->hover_point(); + QString ann = get_annotation_at_point(hp); assert(_view); assert(_row_height); - assert(_text_height); - if (!ann.isEmpty()) { - const int hover_row = get_row_at_hover_point(); + if (ann.isEmpty()) { + hide_hover_annotation(); + return; + } - // Make sure the tool tip doesn't overlap with the mouse cursor. - // If it did, the tool tip would constantly hide and re-appear. - QPoint hp = _view->hover_point(); - hp.setY(get_y() - (_row_height/2) + - (hover_row * _row_height) - _text_height); + const int hover_row = get_row_at_point(hp); - QToolTip::showText(_view->mapToGlobal(hp), ann); - } else - hide_hover_annotation(); -} + QFontMetrics m(QToolTip::font()); + const QRect text_size = m.boundingRect(QRect(), 0, ann); -void DecodeTrace::hide_hover_annotation() -{ - QToolTip::hideText(); -} + // This is OS-specific and unfortunately we can't query it, so + // use an approximation to at least try to minimize the error. + const int padding = 8; -void DecodeTrace::hover_point_changed() -{ - if (hover_point_is_over_trace()) - show_hover_annotation(); - else - hide_hover_annotation(); + // Make sure the tool tip doesn't overlap with the mouse cursor. + // If it did, the tool tip would constantly hide and re-appear. + // We also push it up by one row so that it appears above the + // decode trace, not below. + hp.setX(hp.x() - (text_size.width() / 2) - padding); + + hp.setY(get_y() - (_row_height / 2) + (hover_row * _row_height) + - _row_height - text_size.height()); + + QToolTip::showText(_view->viewport()->mapToGlobal(hp), ann); } void DecodeTrace::create_decoder_form(int index,