]> sigrok.org Git - pulseview.git/blame - pv/view/ruler.cpp
MarginWidget: Moved in create_popup
[pulseview.git] / pv / view / 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
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
19 */
20
819e2e95 21#include <extdef.h>
ca4ec3ea 22
819e2e95
JH
23#include <QApplication>
24#include <QFontMetrics>
115a522a 25#include <QMenu>
819e2e95
JH
26#include <QMouseEvent>
27
28#include "ruler.hpp"
2acdb232 29#include "view.hpp"
ccdd3ef5 30
819e2e95 31#include <pv/util.hpp>
ccdd3ef5 32
819f4c25 33using namespace Qt;
f76af637 34
819e2e95
JH
35using std::shared_ptr;
36using std::vector;
37
ccdd3ef5
JH
38namespace pv {
39namespace view {
40
249229ec 41const float Ruler::RulerHeight = 2.5f; // x Text Height
ccdd3ef5 42const int Ruler::MinorTickSubdivision = 4;
ccdd3ef5 43
415341a1 44const float Ruler::HoverArrowSize = 0.5f; // x Text Height
b3a7c013 45
ccdd3ef5 46Ruler::Ruler(View &parent) :
e456e8e1 47 MarginWidget(parent)
ccdd3ef5 48{
b3a7c013
JH
49 setMouseTracking(true);
50
8dbbc7f0 51 connect(&view_, SIGNAL(hover_point_changed()),
b3a7c013 52 this, SLOT(hover_point_changed()));
ccdd3ef5
JH
53}
54
819e2e95
JH
55void Ruler::clear_selection()
56{
57 const vector< shared_ptr<TimeItem> > items(view_.time_items());
58 for (auto &i : items)
59 i->select(false);
60 update();
61}
62
a6c1726e
JH
63QSize Ruler::sizeHint() const
64{
249229ec
JH
65 const int text_height = calculate_text_height();
66 return QSize(0, RulerHeight * text_height);
a6c1726e
JH
67}
68
819e2e95
JH
69QSize Ruler::extended_size_hint() const
70{
f5b833c6
JH
71 QRectF max_rect;
72 std::vector< std::shared_ptr<TimeItem> > items(view_.time_items());
73 for (auto &i : items)
74 max_rect = max_rect.united(i->label_rect(QRect()));
75 return QSize(0, sizeHint().height() - max_rect.top() / 2 +
76 ViewItem::HighlightRadius);
819e2e95
JH
77}
78
25a0d47c
JH
79shared_ptr<TimeItem> Ruler::get_mouse_over_item(const QPoint &pt)
80{
81 const vector< shared_ptr<TimeItem> > items(view_.time_items());
82 for (auto i = items.rbegin(); i != items.rend(); i++)
83 if ((*i)->enabled() && (*i)->label_rect(rect()).contains(pt))
84 return *i;
85 return nullptr;
86}
87
e314eca4 88void Ruler::paintEvent(QPaintEvent*)
ccdd3ef5 89{
f260e3bf 90 const int ValueMargin = 3;
3f509c1f 91
ccdd3ef5 92 QPainter p(this);
ce6e73a8 93 p.setRenderHint(QPainter::Antialiasing);
ccdd3ef5 94
361c560e
JH
95 const double tick_period = view_.tick_period();
96 const unsigned int prefix = view_.tick_prefix();
1b5813fe 97
ccdd3ef5 98 // Draw the tick marks
d2caed8d 99 p.setPen(palette().color(foregroundRole()));
ccdd3ef5
JH
100
101 const double minor_tick_period = tick_period / MinorTickSubdivision;
102 const double first_major_division =
8dbbc7f0 103 floor(view_.offset() / tick_period);
ccdd3ef5 104 const double first_minor_division =
8dbbc7f0 105 ceil(view_.offset() / minor_tick_period);
ccdd3ef5
JH
106 const double t0 = first_major_division * tick_period;
107
108 int division = (int)round(first_minor_division -
64b678ba 109 first_major_division * MinorTickSubdivision) - 1;
f260e3bf 110
e456e8e1 111 const int text_height = calculate_text_height();
249229ec 112 const int ruler_height = RulerHeight * text_height;
e456e8e1 113 const int major_tick_y1 = text_height + ValueMargin * 2;
249229ec 114 const int minor_tick_y1 = (major_tick_y1 + ruler_height) / 2;
f260e3bf 115
64b678ba 116 double x;
ccdd3ef5 117
64b678ba
JH
118 do {
119 const double t = t0 + division * minor_tick_period;
8dbbc7f0 120 x = (t - view_.offset()) / view_.scale();
ccdd3ef5 121
333d5bbc 122 if (division % MinorTickSubdivision == 0)
ccdd3ef5
JH
123 {
124 // Draw a major tick
e456e8e1 125 p.drawText(x, ValueMargin, 0, text_height,
f260e3bf 126 AlignCenter | AlignTop | TextDontClip,
f0c9f81c 127 pv::util::format_time(t, prefix));
f260e3bf 128 p.drawLine(QPointF(x, major_tick_y1),
249229ec 129 QPointF(x, ruler_height));
ccdd3ef5
JH
130 }
131 else
132 {
133 // Draw a minor tick
f260e3bf 134 p.drawLine(QPointF(x, minor_tick_y1),
249229ec 135 QPointF(x, ruler_height));
ccdd3ef5
JH
136 }
137
138 division++;
64b678ba
JH
139
140 } while (x < width());
ccdd3ef5 141
b3a7c013 142 // Draw the hover mark
249229ec 143 draw_hover_mark(p, text_height);
819e2e95
JH
144
145 // The cursor labels are not drawn with the arrows exactly on the
146 // bottom line of the widget, because then the selection shadow
147 // would be clipped away.
09d5df11 148 const QRect r = rect().adjusted(0, 0, 0, -ViewItem::HighlightRadius);
819e2e95
JH
149
150 // Draw the items
151 const vector< shared_ptr<TimeItem> > items(view_.time_items());
49028d6c
JH
152 for (auto &i : items) {
153 const bool highlight = !dragging_ &&
154 i->label_rect(r).contains(mouse_point_);
155 i->paint_label(p, r, highlight);
156 }
819e2e95
JH
157}
158
159void Ruler::mouseMoveEvent(QMouseEvent *e)
160{
161 mouse_point_ = e->pos();
162
163 if (!(e->buttons() & Qt::LeftButton))
164 return;
165
166 if ((e->pos() - mouse_down_point_).manhattanLength() <
167 QApplication::startDragDistance())
168 return;
169
170 // Do the drag
171 dragging_ = true;
172
23e75650 173 const QPoint delta = e->pos() - mouse_down_point_;
819e2e95
JH
174 const vector< shared_ptr<TimeItem> > items(view_.time_items());
175 for (auto &i : items)
176 if (i->dragging())
23e75650 177 i->drag_by(delta);
819e2e95
JH
178}
179
180void Ruler::mousePressEvent(QMouseEvent *e)
181{
182 if (e->buttons() & Qt::LeftButton) {
183 mouse_down_point_ = e->pos();
25a0d47c 184 mouse_down_item_ = get_mouse_over_item(e->pos());
819e2e95
JH
185
186 clear_selection();
187
819e2e95
JH
188 if (mouse_down_item_) {
189 mouse_down_item_->select();
190 mouse_down_item_->drag();
191 }
192
193 selection_changed();
194 }
195}
196
197void Ruler::mouseReleaseEvent(QMouseEvent *)
198{
199 using pv::widgets::Popup;
200
786b7678
JH
201 if (!dragging_ && mouse_down_item_)
202 show_popup(mouse_down_item_);
819e2e95
JH
203
204 dragging_ = false;
205 mouse_down_item_.reset();
206
207 const vector< shared_ptr<TimeItem> > items(view_.time_items());
208 for (auto &i : items)
209 i->drag_release();
210}
211
212void Ruler::leaveEvent(QEvent*)
213{
214 mouse_point_ = QPoint(-1, -1);
215 update();
216}
217
218void Ruler::mouseDoubleClickEvent(QMouseEvent *e)
219{
220 view_.add_flag(view_.offset() + ((double)e->x() + 0.5) * view_.scale());
221}
222
115a522a
JH
223void Ruler::contextMenuEvent(QContextMenuEvent *event)
224{
225 const shared_ptr<TimeItem> r = get_mouse_over_item(mouse_point_);
226 if (!r)
227 return;
228
229 QMenu *menu = r->create_context_menu(this);
230 if (menu)
231 menu->exec(event->globalPos());
232}
233
819e2e95
JH
234void Ruler::keyPressEvent(QKeyEvent *e)
235{
236 assert(e);
237
238 if (e->key() == Qt::Key_Delete)
239 {
240 const vector< shared_ptr<TimeItem> > items(view_.time_items());
241 for (auto &i : items)
242 if (i->selected())
243 i->delete_pressed();
244 }
ca4ec3ea
JH
245}
246
249229ec 247void Ruler::draw_hover_mark(QPainter &p, int text_height)
b3a7c013 248{
8dbbc7f0 249 const int x = view_.hover_point().x();
333d5bbc 250
84a0d458 251 if (x == -1)
b3a7c013
JH
252 return;
253
254 p.setPen(QPen(Qt::NoPen));
ad1d8e2b 255 p.setBrush(QBrush(palette().color(foregroundRole())));
b3a7c013 256
249229ec 257 const int b = RulerHeight * text_height;
415341a1 258 const float hover_arrow_size = HoverArrowSize * text_height;
b3a7c013
JH
259 const QPointF points[] = {
260 QPointF(x, b),
415341a1
JH
261 QPointF(x - hover_arrow_size, b - hover_arrow_size),
262 QPointF(x + hover_arrow_size, b - hover_arrow_size)
b3a7c013
JH
263 };
264 p.drawPolygon(points, countof(points));
265}
266
e456e8e1 267int Ruler::calculate_text_height() const
819e2e95 268{
c0096500 269 return QFontMetrics(font()).ascent();
819e2e95
JH
270}
271
b3a7c013
JH
272void Ruler::hover_point_changed()
273{
274 update();
275}
276
ccdd3ef5
JH
277} // namespace view
278} // namespace pv