X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=ed9df36064f74407b1a1ee81f80d11378adbc81c;hp=e40c393ba6e629e32724f9cba1c382bf4d48a5a3;hb=98cfe4e8dadad2cf710eb46fd5c85d9d0520a875;hpb=317008bac93a797279be2265f40626cc772da353 diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index e40c393b..ed9df360 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -18,58 +18,176 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "timemarker.h" +#include -#include "view.h" +#include +#include "timemarker.hpp" + +#include "view.hpp" + +#include +#include +#include #include -using namespace std; +#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), - _time(time), - _value_action(NULL), - _value_widget(NULL), - _updating_value_widget(false) + TimeItem(view), + colour_(colour), + time_(time), + value_action_(NULL), + value_widget_(NULL), + updating_value_widget_(false) { } double TimeMarker::time() const { - return _time; + return time_; } void TimeMarker::set_time(double time) { - _time = time; + time_ = time; - if (_value_widget) { - _updating_value_widget = true; - _value_widget->setValue(time); - _updating_value_widget = false; + if (value_widget_) { + updating_value_widget_ = true; + value_widget_->setValue(time); + updating_value_widget_ = false; } - time_changed(); + view_.time_item_appearance_changed(true, true); } -void TimeMarker::paint(QPainter &p, const QRect &rect) +float TimeMarker::get_x() const { - const float x = (_time - _view.offset()) / _view.scale(); - p.setPen(_colour); - p.drawLine(QPointF(x, rect.top()), QPointF(x, rect.bottom())); + return (time_ - view_.offset()) / view_.scale(); } -void TimeMarker::on_value_changed(double value) +QPoint TimeMarker::point() const { - if (!_updating_value_widget) { - _time = value; - time_changed(); + return QPoint(get_x(), 0); +} + +QRectF TimeMarker::label_rect(const QRectF &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(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()); +} + +void TimeMarker::paint_fore(QPainter &p, const ViewItemPaintParams &pp) +{ + if (!enabled()) + return; + + const float x = get_x(); + p.setPen(colour_.darker()); + p.drawLine(QPointF(x, pp.top()), QPointF(x, pp.bottom())); +} + +pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent) +{ + using pv::widgets::Popup; + + Popup *const popup = new Popup(parent); + QFormLayout *const form = new QFormLayout(popup); + popup->setLayout(form); + + value_widget_ = new QDoubleSpinBox(parent); + value_widget_->setDecimals(9); + value_widget_->setSuffix("s"); + value_widget_->setSingleStep(1e-6); + value_widget_->setRange(-1.0e9, 1.0e9); + value_widget_->setValue(time_); + + connect(value_widget_, SIGNAL(valueChanged(double)), + this, SLOT(on_value_changed(double))); + + form->addRow(tr("Time"), value_widget_); + + return popup; +} + +void TimeMarker::on_value_changed(double value) +{ + if (!updating_value_widget_) + set_time(value); } } // namespace view