2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
25 #include "../sigsession.h"
29 #include <boost/foreach.hpp>
31 #include <QApplication>
32 #include <QColorDialog>
33 #include <QInputDialog>
35 #include <QMouseEvent>
39 using namespace boost;
45 Header::Header(View &parent) :
47 _action_set_name(new QAction(tr("Set &Name..."), this)),
48 _action_set_colour(new QAction(tr("Set &Colour..."), this))
50 setMouseTracking(true);
52 connect(_action_set_name, SIGNAL(triggered()),
53 this, SLOT(on_action_set_name_triggered()));
54 connect(_action_set_colour, SIGNAL(triggered()),
55 this, SLOT(on_action_set_colour_triggered()));
57 connect(&_view.session(), SIGNAL(signals_changed()),
58 this, SLOT(on_signals_changed()));
60 connect(&_view, SIGNAL(signals_moved()),
61 this, SLOT(on_signals_moved()));
64 shared_ptr<Trace> Header::get_mouse_over_trace(const QPoint &pt)
66 const int w = width();
67 const vector< shared_ptr<Trace> > traces(_view.get_traces());
69 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
72 if (t->pt_in_label_rect(0, w, pt))
76 return shared_ptr<Trace>();
79 void Header::clear_selection()
81 const vector< shared_ptr<Trace> > traces(_view.get_traces());
82 BOOST_FOREACH(const shared_ptr<Trace> t, traces) {
90 void Header::paintEvent(QPaintEvent*)
92 const int w = width();
93 const vector< shared_ptr<Trace> > traces(_view.get_traces());
95 QPainter painter(this);
96 painter.setRenderHint(QPainter::Antialiasing);
98 const bool dragging = !_drag_traces.empty();
99 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
103 const bool highlight = !dragging && t->pt_in_label_rect(
105 t->paint_label(painter, w, highlight);
111 void Header::mousePressEvent(QMouseEvent *event)
115 const vector< shared_ptr<Trace> > traces(_view.get_traces());
117 if (event->button() & Qt::LeftButton) {
118 _mouse_down_point = event->pos();
120 // Save the offsets of any signals which will be dragged
121 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
123 _drag_traces.push_back(
124 make_pair(t, t->get_v_offset()));
127 // Select the signal if it has been clicked
128 const shared_ptr<Trace> mouse_over_trace =
129 get_mouse_over_trace(event->pos());
130 if (mouse_over_trace) {
131 if (mouse_over_trace->selected())
132 mouse_over_trace->select(false);
134 mouse_over_trace->select(true);
136 if (~QApplication::keyboardModifiers() &
138 _drag_traces.clear();
140 // Add the signal to the drag list
141 if (event->button() & Qt::LeftButton)
142 _drag_traces.push_back(
143 make_pair(mouse_over_trace,
144 mouse_over_trace->get_v_offset()));
148 if (~QApplication::keyboardModifiers() & Qt::ControlModifier) {
149 // Unselect all other signals because the Ctrl is not
151 BOOST_FOREACH(const shared_ptr<Trace> t, traces)
152 if (t != mouse_over_trace)
160 void Header::mouseReleaseEvent(QMouseEvent *event)
163 if (event->button() == Qt::LeftButton) {
164 _drag_traces.clear();
165 _view.normalize_layout();
169 void Header::mouseMoveEvent(QMouseEvent *event)
172 _mouse_point = event->pos();
174 // Move the signals if we are dragging
175 if (!_drag_traces.empty()) {
176 const int delta = event->pos().y() - _mouse_down_point.y();
178 for (std::list<std::pair<boost::weak_ptr<Trace>,
179 int> >::iterator i = _drag_traces.begin();
180 i != _drag_traces.end(); i++) {
181 const boost::shared_ptr<Trace> trace((*i).first);
183 const int y = (*i).second + delta;
185 ((y + View::SignalSnapGridSize / 2) /
186 View::SignalSnapGridSize) *
187 View::SignalSnapGridSize;
188 trace->set_v_offset(y_snap);
190 // Ensure the trace is selected
202 void Header::leaveEvent(QEvent*)
204 _mouse_point = QPoint(-1, -1);
208 void Header::contextMenuEvent(QContextMenuEvent *event)
210 const shared_ptr<Trace> t = get_mouse_over_trace(_mouse_point);
216 menu.addAction(_action_set_name);
217 menu.addAction(_action_set_colour);
220 menu.exec(event->globalPos());
221 _context_trace.reset();
224 void Header::on_action_set_name_triggered()
228 shared_ptr<view::Trace> context_trace = _context_trace;
232 const QString new_label = QInputDialog::getText(this, tr("Set Name"),
233 tr("Name"), QLineEdit::Normal, context_trace->get_name(), &ok);
236 context_trace->set_name(new_label);
239 void Header::on_action_set_colour_triggered()
241 shared_ptr<view::Trace> context_trace = _context_trace;
245 const QColor new_colour = QColorDialog::getColor(
246 context_trace->get_colour(), this, tr("Set Colour"));
248 if (new_colour.isValid())
249 context_trace->set_colour(new_colour);
252 void Header::on_signals_changed()
254 const vector< shared_ptr<Trace> > traces(_view.get_traces());
255 BOOST_FOREACH(shared_ptr<Trace> t, traces) {
257 connect(t.get(), SIGNAL(text_changed()), this, SLOT(update()));
261 void Header::on_signals_moved()