]> sigrok.org Git - pulseview.git/blame - pv/view/timemarker.cpp
TimeMarker: Fixed display of negative value in popup
[pulseview.git] / pv / view / timemarker.cpp
CommitLineData
cd6c8ee2
JH
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 "timemarker.hpp"
cd6c8ee2 22
2acdb232 23#include "view.hpp"
cd6c8ee2 24
b213ef09 25#include <QFormLayout>
cd6c8ee2
JH
26#include <QPainter>
27
2acdb232 28#include <pv/widgets/popup.hpp>
a28a212c 29
cd6c8ee2
JH
30namespace pv {
31namespace view {
32
8debe10d 33TimeMarker::TimeMarker(View &view, const QColor &colour, double time) :
8dbbc7f0
JH
34 view_(view),
35 colour_(colour),
36 time_(time),
37 value_action_(NULL),
38 value_widget_(NULL),
39 updating_value_widget_(false)
cd6c8ee2 40{
ef8311a4
JH
41}
42
cd6c8ee2
JH
43double TimeMarker::time() const
44{
8dbbc7f0 45 return time_;
cd6c8ee2
JH
46}
47
509727eb
JH
48float TimeMarker::get_x() const
49{
8dbbc7f0 50 return (time_ - view_.offset()) / view_.scale();
509727eb
JH
51}
52
0dda6fe5
JH
53QPoint TimeMarker::point() const
54{
55 return QPoint(get_x(), 0);
56}
57
cd6c8ee2
JH
58void TimeMarker::set_time(double time)
59{
8dbbc7f0 60 time_ = time;
317008ba 61
8dbbc7f0
JH
62 if (value_widget_) {
63 updating_value_widget_ = true;
64 value_widget_->setValue(time);
65 updating_value_widget_ = false;
317008ba
JH
66 }
67
ca4ec3ea 68 time_changed();
cd6c8ee2
JH
69}
70
71void TimeMarker::paint(QPainter &p, const QRect &rect)
72{
509727eb 73 const float x = get_x();
8dbbc7f0 74 p.setPen(colour_);
cd6c8ee2
JH
75 p.drawLine(QPointF(x, rect.top()), QPointF(x, rect.bottom()));
76}
77
a28a212c
JH
78pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent)
79{
80 using pv::widgets::Popup;
81
82 Popup *const popup = new Popup(parent);
83 QFormLayout *const form = new QFormLayout(popup);
84 popup->setLayout(form);
85
8dbbc7f0
JH
86 value_widget_ = new QDoubleSpinBox(parent);
87 value_widget_->setDecimals(9);
88 value_widget_->setSuffix("s");
89 value_widget_->setSingleStep(1e-6);
bccef542 90 value_widget_->setRange(-1.0e9, 1.0e9);
8dbbc7f0 91 value_widget_->setValue(time_);
a28a212c 92
8dbbc7f0 93 connect(value_widget_, SIGNAL(valueChanged(double)),
a28a212c
JH
94 this, SLOT(on_value_changed(double)));
95
8dbbc7f0 96 form->addRow(tr("Time"), value_widget_);
a28a212c
JH
97
98 return popup;
99}
100
1e256e16
JH
101void TimeMarker::on_value_changed(double value)
102{
8dbbc7f0
JH
103 if (!updating_value_widget_) {
104 time_ = value;
1e256e16
JH
105 time_changed();
106 }
107}
108
cd6c8ee2
JH
109} // namespace view
110} // namespace pv