]> sigrok.org Git - pulseview.git/blame - pv/view/cursorheader.cpp
View: Added time_markers
[pulseview.git] / pv / view / cursorheader.cpp
CommitLineData
84a0d458
JS
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
2acdb232 21#include "cursorheader.hpp"
84a0d458 22
2acdb232
JH
23#include "ruler.hpp"
24#include "view.hpp"
84a0d458
JS
25
26#include <QApplication>
4707a23d 27#include <QFontMetrics>
84a0d458
JS
28#include <QMouseEvent>
29
2acdb232 30#include <pv/widgets/popup.hpp>
84a0d458
JS
31
32using std::shared_ptr;
2496bf45 33using std::vector;
84a0d458
JS
34
35namespace pv {
36namespace view {
37
4707a23d 38const int CursorHeader::Padding = 20;
4d95ef60 39const int CursorHeader::BaselineOffset = 5;
4707a23d
JS
40
41int CursorHeader::calculateTextHeight()
42{
43 QFontMetrics fm(font());
44 return fm.boundingRect(0, 0, INT_MAX, INT_MAX,
45 Qt::AlignLeft | Qt::AlignTop, "8").height();
46}
84a0d458
JS
47
48CursorHeader::CursorHeader(View &parent) :
49 MarginWidget(parent),
8dbbc7f0
JH
50 dragging_(false),
51 textHeight_(calculateTextHeight())
84a0d458
JS
52{
53 setMouseTracking(true);
54}
55
56QSize CursorHeader::sizeHint() const
57{
8dbbc7f0 58 return QSize(0, textHeight_ + Padding + BaselineOffset);
84a0d458
JS
59}
60
61void CursorHeader::clear_selection()
62{
2496bf45
JH
63 const vector< shared_ptr<TimeItem> > items(view_.time_items());
64 for (auto &i : items)
65 i->select(false);
84a0d458
JS
66 update();
67}
68
69void CursorHeader::paintEvent(QPaintEvent*)
70{
71 QPainter p(this);
72 p.setRenderHint(QPainter::Antialiasing);
73
74 // Draw the cursors
8dbbc7f0 75 if (view_.cursors_shown()) {
4d95ef60
JS
76 // The cursor labels are not drawn with the arrows exactly on the
77 // bottom line of the widget, because then the selection shadow
78 // would be clipped away.
79 const QRect r = rect().adjusted(0, 0, 0, -BaselineOffset);
361c560e 80 view_.cursors().draw_markers(p, r);
84a0d458
JS
81 }
82}
83
84void CursorHeader::mouseMoveEvent(QMouseEvent *e)
85{
86 if (!(e->buttons() & Qt::LeftButton))
87 return;
88
8dbbc7f0 89 if ((e->pos() - mouse_down_point_).manhattanLength() <
84a0d458
JS
90 QApplication::startDragDistance())
91 return;
92
8dbbc7f0 93 dragging_ = true;
84a0d458 94
8dbbc7f0
JH
95 if (shared_ptr<TimeMarker> m = grabbed_marker_.lock())
96 m->set_time(view_.offset() +
97 ((double)e->x() + 0.5) * view_.scale());
84a0d458
JS
98}
99
100void CursorHeader::mousePressEvent(QMouseEvent *e)
101{
102 if (e->buttons() & Qt::LeftButton) {
8dbbc7f0 103 mouse_down_point_ = e->pos();
84a0d458 104
8dbbc7f0 105 grabbed_marker_.reset();
84a0d458
JS
106
107 clear_selection();
108
8dbbc7f0
JH
109 if (view_.cursors_shown()) {
110 CursorPair &cursors = view_.cursors();
84a0d458
JS
111 if (cursors.first()->get_label_rect(
112 rect()).contains(e->pos()))
8dbbc7f0 113 grabbed_marker_ = cursors.first();
84a0d458
JS
114 else if (cursors.second()->get_label_rect(
115 rect()).contains(e->pos()))
8dbbc7f0 116 grabbed_marker_ = cursors.second();
84a0d458
JS
117 }
118
8dbbc7f0 119 if (shared_ptr<TimeMarker> m = grabbed_marker_.lock())
84a0d458
JS
120 m->select();
121
122 selection_changed();
123 }
124}
125
126void CursorHeader::mouseReleaseEvent(QMouseEvent *)
127{
128 using pv::widgets::Popup;
129
8dbbc7f0
JH
130 if (!dragging_)
131 if (shared_ptr<TimeMarker> m = grabbed_marker_.lock()) {
132 Popup *const p = m->create_popup(&view_);
4d95ef60
JS
133 const QPoint arrpos(m->get_x(), height() - BaselineOffset);
134 p->set_position(mapToGlobal(arrpos), Popup::Bottom);
84a0d458
JS
135 p->show();
136 }
137
8dbbc7f0
JH
138 dragging_ = false;
139 grabbed_marker_.reset();
84a0d458
JS
140}
141
142} // namespace view
143} // namespace pv