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, see <http://www.gnu.org/licenses/>.
25 #include "timemarker.hpp"
27 #include "pv/widgets/timestampspinbox.hpp"
31 #include <QApplication>
32 #include <QFontMetrics>
33 #include <QFormLayout>
36 #include <pv/widgets/popup.hpp>
45 const int TimeMarker::ArrowSize
= 4;
47 TimeMarker::TimeMarker(
48 View
&view
, const QColor
&color
, const pv::util::Timestamp
& time
) :
52 value_action_(nullptr),
53 value_widget_(nullptr)
57 const pv::util::Timestamp
TimeMarker::time() const
62 void TimeMarker::set_time(const pv::util::Timestamp
& time
)
67 QSignalBlocker
blocker(value_widget_
);
68 value_widget_
->setValue(view_
.ruler()->get_ruler_time_from_absolute_time(time
));
71 view_
.time_item_appearance_changed(true, true);
74 float TimeMarker::get_x() const
76 // Use roundf() from cmath, std::roundf() causes Android issues (see #945).
77 return roundf(((time_
- view_
.offset()) / view_
.scale()).convert_to
<float>()) + 0.5f
;
80 QPoint
TimeMarker::drag_point(const QRect
&rect
) const
84 return QPoint(get_x(), view_
.mapFromGlobal(QCursor::pos()).y());
87 QRectF
TimeMarker::label_rect(const QRectF
&rect
) const
89 QFontMetrics
m(QApplication::font());
90 const QSizeF
text_size(
91 max(m
.boundingRect(get_text()).size().width(), ArrowSize
),
93 const QSizeF
label_size(text_size
+ LabelPadding
* 2);
94 const float top
= rect
.height() - label_size
.height() -
95 TimeMarker::ArrowSize
- 0.5f
;
96 const float x
= get_x();
98 return QRectF(QPointF(x
- label_size
.width() / 2, top
), label_size
);
101 QRectF
TimeMarker::hit_box_rect(const ViewItemPaintParams
&pp
) const
103 const float x
= get_x();
104 const float h
= QFontMetrics(QApplication::font()).height();
105 return QRectF(x
- h
/ 2.0f
, pp
.top(), h
, pp
.height());
108 void TimeMarker::set_text(const QString
&text
)
113 void TimeMarker::paint_label(QPainter
&p
, const QRect
&rect
, bool hover
)
118 const qreal x
= get_x();
119 const QRectF
r(label_rect(rect
));
121 const QPointF points
[] = {
124 QPointF(max(r
.left(), x
- ArrowSize
), r
.bottom()),
125 QPointF(x
, rect
.bottom()),
126 QPointF(min(r
.right(), x
+ ArrowSize
), r
.bottom()),
131 const QPointF highlight_points
[] = {
132 QPointF(r
.left() + 1, r
.top() + 1),
133 QPointF(r
.left() + 1, r
.bottom() - 1),
134 QPointF(max(r
.left() + 1, x
- ArrowSize
), r
.bottom() - 1),
135 QPointF(min(max(r
.left() + 1, x
), r
.right() - 1),
137 QPointF(min(r
.right() - 1, x
+ ArrowSize
), r
.bottom() - 1),
138 QPointF(r
.right() - 1, r
.bottom() - 1),
139 QPointF(r
.right() - 1, r
.top() + 1),
143 p
.setPen(highlight_pen());
144 p
.setBrush(Qt::transparent
);
145 p
.drawPolygon(points
, countof(points
));
148 p
.setPen(Qt::transparent
);
149 p
.setBrush(hover
? color_
.lighter() : color_
);
150 p
.drawPolygon(points
, countof(points
));
152 p
.setPen(color_
.lighter());
153 p
.setBrush(Qt::transparent
);
154 p
.drawPolygon(highlight_points
, countof(highlight_points
));
156 p
.setPen(color_
.darker());
157 p
.setBrush(Qt::transparent
);
158 p
.drawPolygon(points
, countof(points
));
160 p
.setPen(select_text_color(color_
));
161 p
.drawText(r
, Qt::AlignCenter
| Qt::AlignVCenter
, get_text());
164 void TimeMarker::paint_fore(QPainter
&p
, ViewItemPaintParams
&pp
)
169 const float x
= get_x();
170 p
.setPen(color_
.darker());
171 p
.drawLine(QPointF(x
, pp
.top()), QPointF(x
, pp
.bottom()));
174 pv::widgets::Popup
* TimeMarker::create_popup(QWidget
*parent
)
176 using pv::widgets::Popup
;
178 Popup
*const popup
= new Popup(parent
);
179 popup
->set_position(parent
->mapToGlobal(
180 drag_point(parent
->rect())), Popup::Bottom
);
182 QFormLayout
*const form
= new QFormLayout(popup
);
183 popup
->setLayout(form
);
185 value_widget_
= new pv::widgets::TimestampSpinBox(parent
);
186 value_widget_
->setValue(view_
.ruler()->get_ruler_time_from_absolute_time(time_
));
188 connect(value_widget_
, SIGNAL(valueChanged(const pv::util::Timestamp
&)),
189 this, SLOT(on_value_changed(const pv::util::Timestamp
&)));
191 form
->addRow(tr("Time"), value_widget_
);
196 void TimeMarker::on_value_changed(const pv::util::Timestamp
& value
)
198 set_time(view_
.ruler()->get_absolute_time_from_ruler_time(value
));