X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=d1c16ba8a9339f665fe0064e09cd80c1dc293567;hp=6571bea95c0eac9e6c98c3fca0f27bb9511a5c79;hb=312f40835968f3fff4669942ce139b69abf83a92;hpb=bccef54223c86f65fb0b7ead3124d945f1548beb diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index 6571bea9..d1c16ba8 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -18,18 +18,30 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include + +#include + #include "timemarker.hpp" #include "view.hpp" +#include #include +#include #include #include +using std::max; +using std::min; + namespace pv { namespace view { +const int TimeMarker::ArrowSize = 4; +const int TimeMarker::Offset = 1; + TimeMarker::TimeMarker(View &view, const QColor &colour, double time) : view_(view), colour_(colour), @@ -71,10 +83,81 @@ void TimeMarker::set_time(double time) void TimeMarker::paint(QPainter &p, const QRect &rect) { const float x = get_x(); - p.setPen(colour_); + p.setPen(colour_.darker()); p.drawLine(QPointF(x, rect.top()), QPointF(x, rect.bottom())); } +QRectF TimeMarker::get_label_rect(const QRect &rect) const +{ + const float x = (time_ - view_.offset()) / view_.scale(); + + QFontMetrics m(QApplication::font()); + const float text_width = + max(m.boundingRect(get_text()).size().width(), ArrowSize); + const float text_height = m.boundingRect("Tg").size().height(); + + const QSizeF label_size( + text_width + View::LabelPadding.width() * 2, + text_height + View::LabelPadding.height() * 2); + const float top = rect.height() - label_size.height() - + TimeMarker::Offset - TimeMarker::ArrowSize - 0.5f; + const float height = label_size.height(); + + return QRectF(x - label_size.width() / 2, top, + label_size.width(), height); +} + +void TimeMarker::paint_label(QPainter &p, const QRect &rect) +{ + if (!enabled()) + return; + + const qreal x = (time_ - view_.offset()) / view_.scale(); + const QRectF r(get_label_rect(rect)); + + const QPointF points[] = { + r.topLeft(), + r.bottomLeft(), + QPointF(max(r.left(), x - ArrowSize), r.bottom()), + QPointF(x, rect.bottom()), + QPointF(min(r.right(), x + ArrowSize), r.bottom()), + r.bottomRight(), + r.topRight() + }; + + const QPointF highlight_points[] = { + QPointF(r.left() + 1, r.top() + 1), + QPointF(r.left() + 1, r.bottom() - 1), + QPointF(max(r.left() + 1, x - ArrowSize), r.bottom() - 1), + QPointF(min(max(r.left() + 1, x), r.right() - 1), + rect.bottom() - 1), + QPointF(min(r.right() - 1, x + ArrowSize), r.bottom() - 1), + QPointF(r.right() - 1, r.bottom() - 1), + QPointF(r.right() - 1, r.top() + 1), + }; + + if (selected()) { + p.setPen(highlight_pen()); + p.setBrush(Qt::transparent); + p.drawPolygon(points, countof(points)); + } + + p.setPen(Qt::transparent); + p.setBrush(colour_); + p.drawPolygon(points, countof(points)); + + p.setPen(colour_.lighter()); + p.setBrush(Qt::transparent); + p.drawPolygon(highlight_points, countof(highlight_points)); + + p.setPen(colour_.darker()); + p.setBrush(Qt::transparent); + p.drawPolygon(points, countof(points)); + + p.setPen(select_text_colour(colour_)); + p.drawText(r, Qt::AlignCenter | Qt::AlignVCenter, get_text()); +} + pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent) { using pv::widgets::Popup;