]> sigrok.org Git - pulseview.git/blame - pv/views/trace/ruler.cpp
Session/View: Save triggers in a list and use it
[pulseview.git] / pv / views / trace / ruler.cpp
CommitLineData
ccdd3ef5 1/*
b3f22de0 2 * This file is part of the PulseView project.
ccdd3ef5
JH
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
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.
10 *
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.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
ccdd3ef5
JH
18 */
19
819e2e95 20#include <extdef.h>
ca4ec3ea 21
819e2e95
JH
22#include <QApplication>
23#include <QFontMetrics>
24#include <QMouseEvent>
25
26#include "ruler.hpp"
2acdb232 27#include "view.hpp"
ccdd3ef5 28
819f4c25 29using namespace Qt;
f76af637 30
6f925ba9 31using std::function;
819e2e95
JH
32using std::shared_ptr;
33using std::vector;
34
ccdd3ef5 35namespace pv {
f4e57597 36namespace views {
1573bf16 37namespace trace {
ccdd3ef5 38
3d79f521 39const float Ruler::RulerHeight = 2.5f; // x Text Height
ccdd3ef5 40
3d79f521 41const float Ruler::HoverArrowSize = 0.5f; // x Text Height
b3a7c013 42
ccdd3ef5 43Ruler::Ruler(View &parent) :
e456e8e1 44 MarginWidget(parent)
ccdd3ef5 45{
b3a7c013
JH
46 setMouseTracking(true);
47
873e8035
SA
48 connect(&view_, SIGNAL(hover_point_changed(QPoint)),
49 this, SLOT(hover_point_changed(QPoint)));
4b0af0b6
JS
50 connect(&view_, SIGNAL(offset_changed()),
51 this, SLOT(invalidate_tick_position_cache()));
52 connect(&view_, SIGNAL(scale_changed()),
53 this, SLOT(invalidate_tick_position_cache()));
54 connect(&view_, SIGNAL(tick_prefix_changed()),
55 this, SLOT(invalidate_tick_position_cache()));
56 connect(&view_, SIGNAL(tick_precision_changed()),
57 this, SLOT(invalidate_tick_position_cache()));
58 connect(&view_, SIGNAL(tick_period_changed()),
59 this, SLOT(invalidate_tick_position_cache()));
60 connect(&view_, SIGNAL(time_unit_changed()),
61 this, SLOT(invalidate_tick_position_cache()));
ccdd3ef5
JH
62}
63
a6c1726e
JH
64QSize Ruler::sizeHint() const
65{
249229ec
JH
66 const int text_height = calculate_text_height();
67 return QSize(0, RulerHeight * text_height);
a6c1726e
JH
68}
69
819e2e95
JH
70QSize Ruler::extended_size_hint() const
71{
f5b833c6 72 QRectF max_rect;
6f925ba9 73 vector< shared_ptr<TimeItem> > items(view_.time_items());
f5b833c6
JH
74 for (auto &i : items)
75 max_rect = max_rect.united(i->label_rect(QRect()));
76 return QSize(0, sizeHint().height() - max_rect.top() / 2 +
77 ViewItem::HighlightRadius);
819e2e95
JH
78}
79
3ccf0f7f
JS
80QString Ruler::format_time_with_distance(
81 const pv::util::Timestamp& distance,
82 const pv::util::Timestamp& t,
83 pv::util::SIPrefix prefix,
84 pv::util::TimeUnit unit,
85 unsigned precision,
86 bool sign)
87{
88 const unsigned limit = 60;
89
90 if (t.is_zero())
91 return "0";
92
93 // If we have to use samples then we have no alternative formats
94 if (unit == pv::util::TimeUnit::Samples)
95 return pv::util::format_time_si_adjusted(t, prefix, precision, "sa", sign);
96
97 // View zoomed way out -> low precision (0), big distance (>=60s)
98 // -> DD:HH:MM
99 if ((precision == 0) && (distance >= limit))
100 return pv::util::format_time_minutes(t, 0, sign);
101
102 // View in "normal" range -> medium precision, medium step size
103 // -> HH:MM:SS.mmm... or xxxx (si unit) if less than limit seconds
104 // View zoomed way in -> high precision (>3), low step size (<1s)
105 // -> HH:MM:SS.mmm... or xxxx (si unit) if less than limit seconds
106 if (abs(t) < limit)
107 return pv::util::format_time_si_adjusted(t, prefix, precision, "s", sign);
108 else
109 return pv::util::format_time_minutes(t, precision, sign);
110}
111
3e124bee
JH
112vector< shared_ptr<ViewItem> > Ruler::items()
113{
114 const vector< shared_ptr<TimeItem> > time_items(view_.time_items());
115 return vector< shared_ptr<ViewItem> >(
116 time_items.begin(), time_items.end());
117}
118
6871ee9f 119shared_ptr<ViewItem> Ruler::get_mouse_over_item(const QPoint &pt)
25a0d47c
JH
120{
121 const vector< shared_ptr<TimeItem> > items(view_.time_items());
122 for (auto i = items.rbegin(); i != items.rend(); i++)
123 if ((*i)->enabled() && (*i)->label_rect(rect()).contains(pt))
124 return *i;
125 return nullptr;
126}
127
e314eca4 128void Ruler::paintEvent(QPaintEvent*)
ccdd3ef5 129{
4b0af0b6 130 if (!tick_position_cache_) {
2ad82c2e 131 auto ffunc = [this](const pv::util::Timestamp& t) {
3ccf0f7f
JS
132 return format_time_with_distance(
133 this->view_.tick_period(),
4b0af0b6
JS
134 t,
135 this->view_.tick_prefix(),
136 this->view_.time_unit(),
137 this->view_.tick_precision());
138 };
139
7c6cbdda 140 tick_position_cache_ = calculate_tick_positions(
4b0af0b6 141 view_.tick_period(),
ffc00fdd 142 view_.ruler_offset(),
4b0af0b6
JS
143 view_.scale(),
144 width(),
4a076157 145 view_.minor_tick_count(),
7c6cbdda 146 ffunc);
4b0af0b6 147 }
ccdd3ef5 148
4b0af0b6 149 const int ValueMargin = 3;
f260e3bf 150
e456e8e1 151 const int text_height = calculate_text_height();
249229ec 152 const int ruler_height = RulerHeight * text_height;
e456e8e1 153 const int major_tick_y1 = text_height + ValueMargin * 2;
249229ec 154 const int minor_tick_y1 = (major_tick_y1 + ruler_height) / 2;
f260e3bf 155
4b0af0b6 156 QPainter p(this);
ccdd3ef5 157
4b0af0b6
JS
158 // Draw the tick marks
159 p.setPen(palette().color(foregroundRole()));
ccdd3ef5 160
4b0af0b6
JS
161 for (const auto& tick: tick_position_cache_->major) {
162 p.drawText(tick.first, ValueMargin, 0, text_height,
163 AlignCenter | AlignTop | TextDontClip, tick.second);
164 p.drawLine(QPointF(tick.first, major_tick_y1),
165 QPointF(tick.first, ruler_height));
166 }
ccdd3ef5 167
4b0af0b6
JS
168 for (const auto& tick: tick_position_cache_->minor) {
169 p.drawLine(QPointF(tick, minor_tick_y1),
170 QPointF(tick, ruler_height));
171 }
ccdd3ef5 172
b3a7c013 173 // Draw the hover mark
249229ec 174 draw_hover_mark(p, text_height);
819e2e95 175
97f71253
JS
176 p.setRenderHint(QPainter::Antialiasing);
177
819e2e95
JH
178 // The cursor labels are not drawn with the arrows exactly on the
179 // bottom line of the widget, because then the selection shadow
180 // would be clipped away.
09d5df11 181 const QRect r = rect().adjusted(0, 0, 0, -ViewItem::HighlightRadius);
819e2e95
JH
182
183 // Draw the items
184 const vector< shared_ptr<TimeItem> > items(view_.time_items());
49028d6c 185 for (auto &i : items) {
803cdac4 186 const bool highlight = !item_dragging_ &&
49028d6c
JH
187 i->label_rect(r).contains(mouse_point_);
188 i->paint_label(p, r, highlight);
189 }
819e2e95
JH
190}
191
4b0af0b6 192Ruler::TickPositions Ruler::calculate_tick_positions(
c677193d 193 const pv::util::Timestamp& major_period,
4b0af0b6
JS
194 const pv::util::Timestamp& offset,
195 const double scale,
196 const int width,
4a076157 197 const unsigned int minor_tick_count,
6f925ba9 198 function<QString(const pv::util::Timestamp&)> format_function)
4b0af0b6
JS
199{
200 TickPositions tp;
201
4a076157 202 const pv::util::Timestamp minor_period = major_period / minor_tick_count;
4b0af0b6
JS
203 const pv::util::Timestamp first_major_division = floor(offset / major_period);
204 const pv::util::Timestamp first_minor_division = ceil(offset / minor_period);
205 const pv::util::Timestamp t0 = first_major_division * major_period;
206
207 int division = (round(first_minor_division -
4a076157 208 first_major_division * minor_tick_count)).convert_to<int>() - 1;
4b0af0b6
JS
209
210 double x;
211
212 do {
c677193d 213 pv::util::Timestamp t = t0 + division * minor_period;
4b0af0b6
JS
214 x = ((t - offset) / scale).convert_to<double>();
215
4a076157 216 if (division % minor_tick_count == 0) {
2d141937 217 // Recalculate 't' without using 'minor_period' which is a fraction
4a076157 218 t = t0 + division / minor_tick_count * major_period;
4b0af0b6
JS
219 tp.major.emplace_back(x, format_function(t));
220 } else {
221 tp.minor.emplace_back(x);
222 }
223
224 division++;
225 } while (x < width);
226
227 return tp;
228}
229
d9ea9628 230void Ruler::mouseDoubleClickEvent(QMouseEvent *event)
819e2e95 231{
ffc00fdd 232 view_.add_flag(view_.ruler_offset() + ((double)event->x() + 0.5) * view_.scale());
819e2e95
JH
233}
234
249229ec 235void Ruler::draw_hover_mark(QPainter &p, int text_height)
b3a7c013 236{
8dbbc7f0 237 const int x = view_.hover_point().x();
333d5bbc 238
84a0d458 239 if (x == -1)
b3a7c013
JH
240 return;
241
242 p.setPen(QPen(Qt::NoPen));
ad1d8e2b 243 p.setBrush(QBrush(palette().color(foregroundRole())));
b3a7c013 244
249229ec 245 const int b = RulerHeight * text_height;
415341a1 246 const float hover_arrow_size = HoverArrowSize * text_height;
b3a7c013
JH
247 const QPointF points[] = {
248 QPointF(x, b),
415341a1
JH
249 QPointF(x - hover_arrow_size, b - hover_arrow_size),
250 QPointF(x + hover_arrow_size, b - hover_arrow_size)
b3a7c013
JH
251 };
252 p.drawPolygon(points, countof(points));
253}
254
e456e8e1 255int Ruler::calculate_text_height() const
819e2e95 256{
c0096500 257 return QFontMetrics(font()).ascent();
819e2e95
JH
258}
259
873e8035 260void Ruler::hover_point_changed(const QPoint &hp)
b3a7c013 261{
873e8035
SA
262 (void)hp;
263
b3a7c013
JH
264 update();
265}
266
4b0af0b6
JS
267void Ruler::invalidate_tick_position_cache()
268{
269 tick_position_cache_ = boost::none;
270}
271
272void Ruler::resizeEvent(QResizeEvent*)
273{
274 // the tick calculation depends on the width of this widget
275 invalidate_tick_position_cache();
276}
277
1573bf16 278} // namespace trace
f4e57597 279} // namespace views
ccdd3ef5 280} // namespace pv