]> sigrok.org Git - pulseview.git/blame - pv/view/header.cpp
Handle C-strings as UTF-8
[pulseview.git] / pv / view / header.cpp
CommitLineData
1d8dca91 1/*
b3f22de0 2 * This file is part of the PulseView project.
1d8dca91
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
21#include "header.h"
22#include "view.h"
23
8d634081 24#include "signal.h"
51e77110 25#include "../sigsession.h"
1d8dca91
JH
26
27#include <assert.h>
28
29#include <boost/foreach.hpp>
30
e3374498 31#include <QApplication>
49f8ff3f 32#include <QMenu>
a29bb7fb 33#include <QMouseEvent>
1d8dca91
JH
34#include <QPainter>
35#include <QRect>
36
569d1e41
JH
37#include <pv/widgets/popup.h>
38
1d8dca91
JH
39using namespace boost;
40using namespace std;
41
42namespace pv {
43namespace view {
44
d7c0ca4a
JH
45const int Header::Padding = 12;
46
1d8dca91 47Header::Header(View &parent) :
728fcafc
JH
48 MarginWidget(parent),
49 _dragging(false)
1d8dca91 50{
5ed1adf5 51 setFocusPolicy(Qt::ClickFocus);
a29bb7fb 52 setMouseTracking(true);
49f8ff3f 53
9e40e83d
JH
54 connect(&_view.session(), SIGNAL(signals_changed()),
55 this, SLOT(on_signals_changed()));
56
07204819
JH
57 connect(&_view, SIGNAL(signals_moved()),
58 this, SLOT(on_signals_moved()));
1d8dca91
JH
59}
60
d7c0ca4a
JH
61QSize Header::sizeHint() const
62{
63 int max_width = 0;
64
65 const vector< shared_ptr<Trace> > traces(_view.get_traces());
66 BOOST_FOREACH(shared_ptr<Trace> t, traces) {
67 assert(t);
68 max_width = max(max_width, (int)t->get_label_rect(0).width());
69 }
70
71 return QSize(max_width + Padding, 0);
72}
73
38eeddea 74shared_ptr<Trace> Header::get_mouse_over_trace(const QPoint &pt)
e3374498
JH
75{
76 const int w = width();
38eeddea 77 const vector< shared_ptr<Trace> > traces(_view.get_traces());
e3374498 78
38eeddea 79 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
e3374498 80 {
38eeddea 81 assert(t);
01fd3263 82 if (t->pt_in_label_rect(0, w, pt))
38eeddea 83 return t;
e3374498
JH
84 }
85
38eeddea 86 return shared_ptr<Trace>();
e3374498
JH
87}
88
a2ae0205
JH
89void Header::clear_selection()
90{
38eeddea
JH
91 const vector< shared_ptr<Trace> > traces(_view.get_traces());
92 BOOST_FOREACH(const shared_ptr<Trace> t, traces) {
93 assert(t);
94 t->select(false);
a2ae0205
JH
95 }
96
97 update();
98}
99
e314eca4 100void Header::paintEvent(QPaintEvent*)
1d8dca91
JH
101{
102 const int w = width();
38eeddea 103 const vector< shared_ptr<Trace> > traces(_view.get_traces());
1d8dca91
JH
104
105 QPainter painter(this);
106 painter.setRenderHint(QPainter::Antialiasing);
107
38eeddea
JH
108 const bool dragging = !_drag_traces.empty();
109 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
1d8dca91 110 {
38eeddea 111 assert(t);
1d8dca91 112
38eeddea 113 const bool highlight = !dragging && t->pt_in_label_rect(
01fd3263
JH
114 0, w, _mouse_point);
115 t->paint_label(painter, w, highlight);
1d8dca91
JH
116 }
117
118 painter.end();
119}
120
e3374498
JH
121void Header::mousePressEvent(QMouseEvent *event)
122{
123 assert(event);
124
38eeddea 125 const vector< shared_ptr<Trace> > traces(_view.get_traces());
e3374498 126
333d5bbc 127 if (event->button() & Qt::LeftButton) {
54401bbb
JH
128 _mouse_down_point = event->pos();
129
da2bebfb 130 // Save the offsets of any signals which will be dragged
38eeddea
JH
131 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
132 if (t->selected())
133 _drag_traces.push_back(
134 make_pair(t, t->get_v_offset()));
da2bebfb
JH
135 }
136
137 // Select the signal if it has been clicked
38eeddea
JH
138 const shared_ptr<Trace> mouse_over_trace =
139 get_mouse_over_trace(event->pos());
140 if (mouse_over_trace) {
141 if (mouse_over_trace->selected())
142 mouse_over_trace->select(false);
da2bebfb 143 else {
38eeddea 144 mouse_over_trace->select(true);
da2bebfb 145
333d5bbc 146 if (~QApplication::keyboardModifiers() &
07204819 147 Qt::ControlModifier)
38eeddea 148 _drag_traces.clear();
07204819 149
da2bebfb 150 // Add the signal to the drag list
333d5bbc 151 if (event->button() & Qt::LeftButton)
38eeddea
JH
152 _drag_traces.push_back(
153 make_pair(mouse_over_trace,
154 mouse_over_trace->get_v_offset()));
da2bebfb 155 }
54401bbb
JH
156 }
157
333d5bbc 158 if (~QApplication::keyboardModifiers() & Qt::ControlModifier) {
07204819
JH
159 // Unselect all other signals because the Ctrl is not
160 // pressed
38eeddea
JH
161 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
162 if (t != mouse_over_trace)
163 t->select(false);
07204819
JH
164 }
165
b2a53645 166 selection_changed();
e3374498
JH
167 update();
168}
169
54401bbb
JH
170void Header::mouseReleaseEvent(QMouseEvent *event)
171{
569d1e41
JH
172 using pv::widgets::Popup;
173
54401bbb 174 assert(event);
333d5bbc 175 if (event->button() == Qt::LeftButton) {
569d1e41
JH
176 if (_dragging)
177 _view.normalize_layout();
178 else
179 {
180 const shared_ptr<Trace> mouse_over_trace =
181 get_mouse_over_trace(event->pos());
182 if (mouse_over_trace) {
183 Popup *const p =
184 mouse_over_trace->create_popup(&_view);
185 p->set_position(mapToGlobal(QPoint(width(),
186 mouse_over_trace->get_y())),
187 Popup::Right);
188 p->show();
189 }
190 }
191
728fcafc 192 _dragging = false;
38eeddea 193 _drag_traces.clear();
4b192962 194 }
54401bbb
JH
195}
196
a29bb7fb
JH
197void Header::mouseMoveEvent(QMouseEvent *event)
198{
199 assert(event);
200 _mouse_point = event->pos();
54401bbb 201
728fcafc
JH
202 if (!(event->buttons() & Qt::LeftButton))
203 return;
204
205 if ((event->pos() - _mouse_down_point).manhattanLength() <
206 QApplication::startDragDistance())
207 return;
208
54401bbb 209 // Move the signals if we are dragging
728fcafc
JH
210 if (!_drag_traces.empty())
211 {
212 _dragging = true;
213
54401bbb
JH
214 const int delta = event->pos().y() - _mouse_down_point.y();
215
38eeddea
JH
216 for (std::list<std::pair<boost::weak_ptr<Trace>,
217 int> >::iterator i = _drag_traces.begin();
218 i != _drag_traces.end(); i++) {
219 const boost::shared_ptr<Trace> trace((*i).first);
220 if (trace) {
da2bebfb 221 const int y = (*i).second + delta;
49153683
JH
222 const int y_snap =
223 ((y + View::SignalSnapGridSize / 2) /
224 View::SignalSnapGridSize) *
225 View::SignalSnapGridSize;
38eeddea 226 trace->set_v_offset(y_snap);
da2bebfb 227
38eeddea
JH
228 // Ensure the trace is selected
229 trace->select();
49153683 230 }
da2bebfb
JH
231
232 }
54401bbb
JH
233
234 signals_moved();
235 }
236
a29bb7fb
JH
237 update();
238}
239
e314eca4 240void Header::leaveEvent(QEvent*)
a29bb7fb
JH
241{
242 _mouse_point = QPoint(-1, -1);
243 update();
244}
245
49f8ff3f
JH
246void Header::contextMenuEvent(QContextMenuEvent *event)
247{
38eeddea 248 const shared_ptr<Trace> t = get_mouse_over_trace(_mouse_point);
49f8ff3f 249
9b6378f1
JH
250 if (t)
251 t->create_context_menu(this)->exec(event->globalPos());
b3b57abc
JH
252}
253
5ed1adf5
JH
254void Header::keyPressEvent(QKeyEvent *e)
255{
256 assert(e);
257
258 switch (e->key())
259 {
260 case Qt::Key_Delete:
261 {
262 const vector< shared_ptr<Trace> > traces(_view.get_traces());
263 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
264 if (t->selected())
265 t->delete_pressed();
266 break;
267 }
268 }
269}
270
9e40e83d
JH
271void Header::on_signals_changed()
272{
38eeddea
JH
273 const vector< shared_ptr<Trace> > traces(_view.get_traces());
274 BOOST_FOREACH(shared_ptr<Trace> t, traces) {
275 assert(t);
aca00b1e
JH
276 connect(t.get(), SIGNAL(visibility_changed()),
277 this, SLOT(update()));
91e8bf08 278 connect(t.get(), SIGNAL(text_changed()),
d7c0ca4a 279 this, SLOT(on_trace_text_changed()));
91e8bf08
JH
280 connect(t.get(), SIGNAL(colour_changed()),
281 this, SLOT(update()));
9e40e83d
JH
282 }
283}
284
07204819
JH
285void Header::on_signals_moved()
286{
287 update();
288}
289
d7c0ca4a
JH
290void Header::on_trace_text_changed()
291{
292 update();
293 geometry_updated();
294}
07204819 295
1d8dca91
JH
296} // namespace view
297} // namespace pv