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