]> sigrok.org Git - pulseview.git/blame - pv/view/analogsignal.hpp
Show sampling points in analog traces.
[pulseview.git] / pv / view / analogsignal.hpp
CommitLineData
aba1dd16
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
aba1dd16 22
2acdb232 23#include "signal.hpp"
aba1dd16 24
f9abf97e 25#include <memory>
aba1dd16 26
368a37c2
SA
27#include <QComboBox>
28
aba1dd16
JH
29namespace pv {
30
1b1ec774
JH
31namespace data {
32class Analog;
f3d66e52 33class AnalogSegment;
bf0edd2b 34class SignalBase;
1b1ec774 35}
aba1dd16 36
f4e57597
SA
37namespace views {
38namespace TraceView {
aba1dd16
JH
39
40class AnalogSignal : public Signal
41{
4cffac16
SA
42 Q_OBJECT
43
568b90d4
JH
44private:
45 static const QColor SignalColours[4];
37b9fed4 46 static const QColor GridMajorColor, GridMinorColor;
8de1e1b2 47 static const QColor SamplingPointColour;
568b90d4 48
7c68ddae
JH
49 static const float EnvelopeThreshold;
50
4cffac16 51 static const int MaximumVDivs;
368a37c2 52 static const int MaxScaleIndex, MinScaleIndex;
03cc651d 53 static const int InfoTextMarginRight, InfoTextMarginBottom;
4cffac16 54
aba1dd16 55public:
2b81ae46 56 AnalogSignal(pv::Session &session,
cbd2a2de 57 std::shared_ptr<data::SignalBase> base);
aba1dd16 58
c6246dc5 59 virtual ~AnalogSignal() = default;
f459c540 60
f9abf97e 61 std::shared_ptr<pv::data::SignalData> data() const;
9a0cd293 62
3a21afa6
SA
63 virtual void save_settings(QSettings &settings) const;
64
65 virtual void restore_settings(QSettings &settings);
66
a5d93c27
JH
67 /**
68 * Computes the vertical extents of the contents of this row item.
69 * @return A pair containing the minimum and maximum y-values.
70 */
71 std::pair<int, int> v_extents() const;
72
214470fc
JH
73 /**
74 * Returns the offset to show the drag handle.
75 */
76 int scale_handle_offset() const;
77
78 /**
79 * Handles the scale handle being dragged to an offset.
80 * @param offset the offset the scale handle was dragged to.
81 */
82 void scale_handle_dragged(int offset);
83
8a2fafcc
JH
84 /**
85 * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
86 */
87 void scale_handle_drag_release();
88
aba1dd16 89 /**
fe08b6e8 90 * Paints the background layer of the signal with a QPainter
aba1dd16 91 * @param p the QPainter to paint into.
3eb29afd 92 * @param pp the painting parameters object to paint with..
223d0c37 93 */
5b5fa4da 94 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
fe08b6e8
JH
95
96 /**
97 * Paints the mid-layer of the signal with a QPainter
98 * @param p the QPainter to paint into.
3eb29afd 99 * @param pp the painting parameters object to paint with..
223d0c37 100 */
5b5fa4da 101 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
aba1dd16 102
03cc651d
SA
103 /**
104 * Paints the foreground layer of the item with a QPainter
105 * @param p the QPainter to paint into.
106 * @param pp the painting parameters object to paint with.
107 */
108 void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
109
7c68ddae 110private:
37b9fed4
SA
111 void paint_grid(QPainter &p, int y, int left, int right);
112
7c68ddae 113 void paint_trace(QPainter &p,
f3d66e52 114 const std::shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
115 int y, int left, const int64_t start, const int64_t end,
116 const double pixels_offset, const double samples_per_pixel);
117
118 void paint_envelope(QPainter &p,
f3d66e52 119 const std::shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
120 int y, int left, const int64_t start, const int64_t end,
121 const double pixels_offset, const double samples_per_pixel);
122
8a2fafcc 123 /**
834a4f1b 124 * Computes the scale factor from the scale index and vdiv settings.
8a2fafcc 125 */
368a37c2
SA
126 float get_resolution(int scale_index);
127
834a4f1b 128 void update_scale();
8a2fafcc 129
73e377fe
SA
130 void perform_autoranging(bool force_update = false);
131
4cffac16
SA
132protected:
133 void populate_popup_form(QWidget *parent, QFormLayout *form);
134
135private Q_SLOTS:
85715407
SA
136 void on_samples_added();
137
459db2c5
SA
138 void on_pos_vdivs_changed(int vdivs);
139 void on_neg_vdivs_changed(int vdivs);
4cffac16 140
368a37c2
SA
141 void on_resolution_changed(int index);
142
73e377fe
SA
143 void on_autoranging_changed(int state);
144
aba1dd16 145private:
368a37c2
SA
146 QComboBox *resolution_cb_;
147
834a4f1b 148 float scale_;
8a2fafcc
JH
149 int scale_index_;
150 int scale_index_drag_offset_;
37b9fed4
SA
151
152 int div_height_;
459db2c5 153 int pos_vdivs_, neg_vdivs_; // divs per positive/negative side
834a4f1b 154 float resolution_; // e.g. 10 for 10 V/div
73e377fe
SA
155
156 bool autoranging_;
aba1dd16
JH
157};
158
f4e57597
SA
159} // namespace TraceView
160} // namespace views
aba1dd16
JH
161} // namespace pv
162
f4e57597 163#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP