2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "timemarker.hpp"
29 #include <QApplication>
30 #include <QFormLayout>
31 #include <QFontMetrics>
34 #include <pv/widgets/popup.hpp>
42 const int TimeMarker::ArrowSize = 4;
43 const int TimeMarker::Offset = 1;
45 TimeMarker::TimeMarker(View &view, const QColor &colour, double time) :
51 updating_value_widget_(false)
55 double TimeMarker::time() const
60 void TimeMarker::set_time(double time)
65 updating_value_widget_ = true;
66 value_widget_->setValue(time);
67 updating_value_widget_ = false;
70 view_.time_item_appearance_changed(true, true);
73 float TimeMarker::get_x() const
75 return (time_ - view_.offset()) / view_.scale();
78 QPoint TimeMarker::point() const
80 return QPoint(get_x(), 0);
83 QRectF TimeMarker::label_rect(const QRectF &rect) const
85 const float x = (time_ - view_.offset()) / view_.scale();
87 QFontMetrics m(QApplication::font());
88 const float text_width =
89 max(m.boundingRect(get_text()).size().width(), ArrowSize);
90 const float text_height = m.boundingRect("Tg").size().height();
92 const QSizeF label_size(
93 text_width + View::LabelPadding.width() * 2,
94 text_height + View::LabelPadding.height() * 2);
95 const float top = rect.height() - label_size.height() -
96 TimeMarker::Offset - TimeMarker::ArrowSize - 0.5f;
97 const float height = label_size.height();
99 return QRectF(x - label_size.width() / 2, top,
100 label_size.width(), height);
103 void TimeMarker::paint_label(QPainter &p, const QRect &rect)
108 const qreal x = (time_ - view_.offset()) / view_.scale();
109 const QRectF r(label_rect(rect));
111 const QPointF points[] = {
114 QPointF(max(r.left(), x - ArrowSize), r.bottom()),
115 QPointF(x, rect.bottom()),
116 QPointF(min(r.right(), x + ArrowSize), r.bottom()),
121 const QPointF highlight_points[] = {
122 QPointF(r.left() + 1, r.top() + 1),
123 QPointF(r.left() + 1, r.bottom() - 1),
124 QPointF(max(r.left() + 1, x - ArrowSize), r.bottom() - 1),
125 QPointF(min(max(r.left() + 1, x), r.right() - 1),
127 QPointF(min(r.right() - 1, x + ArrowSize), r.bottom() - 1),
128 QPointF(r.right() - 1, r.bottom() - 1),
129 QPointF(r.right() - 1, r.top() + 1),
133 p.setPen(highlight_pen());
134 p.setBrush(Qt::transparent);
135 p.drawPolygon(points, countof(points));
138 p.setPen(Qt::transparent);
140 p.drawPolygon(points, countof(points));
142 p.setPen(colour_.lighter());
143 p.setBrush(Qt::transparent);
144 p.drawPolygon(highlight_points, countof(highlight_points));
146 p.setPen(colour_.darker());
147 p.setBrush(Qt::transparent);
148 p.drawPolygon(points, countof(points));
150 p.setPen(select_text_colour(colour_));
151 p.drawText(r, Qt::AlignCenter | Qt::AlignVCenter, get_text());
154 void TimeMarker::paint_fore(QPainter &p, const ViewItemPaintParams &pp)
159 const float x = get_x();
160 p.setPen(colour_.darker());
161 p.drawLine(QPointF(x, pp.top()), QPointF(x, pp.bottom()));
164 pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent)
166 using pv::widgets::Popup;
168 Popup *const popup = new Popup(parent);
169 QFormLayout *const form = new QFormLayout(popup);
170 popup->setLayout(form);
172 value_widget_ = new QDoubleSpinBox(parent);
173 value_widget_->setDecimals(9);
174 value_widget_->setSuffix("s");
175 value_widget_->setSingleStep(1e-6);
176 value_widget_->setRange(-1.0e9, 1.0e9);
177 value_widget_->setValue(time_);
179 connect(value_widget_, SIGNAL(valueChanged(double)),
180 this, SLOT(on_value_changed(double)));
182 form->addRow(tr("Time"), value_widget_);
187 void TimeMarker::on_value_changed(double value)
189 if (!updating_value_widget_)