]> sigrok.org Git - pulseview.git/blame - pv/views/trace/analogsignal.hpp
Typo fix: treshold -> threshold
[pulseview.git] / pv / views / trace / 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 27#include <QComboBox>
430b94aa 28#include <QSpinBox>
52c900ac 29#include <QTimer>
368a37c2 30
6f925ba9
UH
31using std::pair;
32using std::shared_ptr;
33
aba1dd16
JH
34namespace pv {
35
1b1ec774
JH
36namespace data {
37class Analog;
f3d66e52 38class AnalogSegment;
bf0edd2b 39class SignalBase;
1b1ec774 40}
aba1dd16 41
f4e57597 42namespace views {
1573bf16 43namespace trace {
aba1dd16
JH
44
45class AnalogSignal : public Signal
46{
4cffac16
SA
47 Q_OBJECT
48
568b90d4
JH
49private:
50 static const QColor SignalColours[4];
37b9fed4 51 static const QColor GridMajorColor, GridMinorColor;
8de1e1b2 52 static const QColor SamplingPointColour;
568b90d4 53
fdfd5b3e 54 static const int64_t TracePaintBlockSize;
7c68ddae
JH
55 static const float EnvelopeThreshold;
56
4cffac16 57 static const int MaximumVDivs;
368a37c2 58 static const int MaxScaleIndex, MinScaleIndex;
03cc651d 59 static const int InfoTextMarginRight, InfoTextMarginBottom;
4cffac16 60
a970015f
SA
61 enum DisplayType {
62 DisplayAnalog = 0,
63 DisplayConverted = 1,
64 DisplayBoth = 2
65 };
66
aba1dd16 67public:
6f925ba9 68 AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
aba1dd16 69
c6246dc5 70 virtual ~AnalogSignal() = default;
f459c540 71
6f925ba9 72 shared_ptr<pv::data::SignalData> data() const;
9a0cd293 73
3a21afa6
SA
74 virtual void save_settings(QSettings &settings) const;
75
76 virtual void restore_settings(QSettings &settings);
77
a5d93c27
JH
78 /**
79 * Computes the vertical extents of the contents of this row item.
80 * @return A pair containing the minimum and maximum y-values.
81 */
6f925ba9 82 pair<int, int> v_extents() const;
a5d93c27 83
214470fc
JH
84 /**
85 * Returns the offset to show the drag handle.
86 */
87 int scale_handle_offset() const;
88
89 /**
90 * Handles the scale handle being dragged to an offset.
91 * @param offset the offset the scale handle was dragged to.
92 */
93 void scale_handle_dragged(int offset);
94
8a2fafcc
JH
95 /**
96 * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
97 */
98 void scale_handle_drag_release();
99
aba1dd16 100 /**
fe08b6e8 101 * Paints the background layer of the signal with a QPainter
aba1dd16 102 * @param p the QPainter to paint into.
3eb29afd 103 * @param pp the painting parameters object to paint with..
223d0c37 104 */
60938e04 105 void paint_back(QPainter &p, ViewItemPaintParams &pp);
fe08b6e8
JH
106
107 /**
108 * Paints the mid-layer of the signal with a QPainter
109 * @param p the QPainter to paint into.
3eb29afd 110 * @param pp the painting parameters object to paint with..
223d0c37 111 */
60938e04 112 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
aba1dd16 113
03cc651d
SA
114 /**
115 * Paints the foreground layer of the item with a QPainter
116 * @param p the QPainter to paint into.
117 * @param pp the painting parameters object to paint with.
118 */
60938e04 119 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
03cc651d 120
7c68ddae 121private:
37b9fed4
SA
122 void paint_grid(QPainter &p, int y, int left, int right);
123
7c68ddae 124 void paint_trace(QPainter &p,
6f925ba9 125 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
126 int y, int left, const int64_t start, const int64_t end,
127 const double pixels_offset, const double samples_per_pixel);
128
129 void paint_envelope(QPainter &p,
6f925ba9 130 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
131 int y, int left, const int64_t start, const int64_t end,
132 const double pixels_offset, const double samples_per_pixel);
133
60938e04 134 void paint_logic_mid(QPainter &p, ViewItemPaintParams &pp);
a8fd2759
SA
135
136 void paint_logic_caps(QPainter &p, QLineF *const lines,
137 vector< pair<int64_t, bool> > &edges,
138 bool level, double samples_per_pixel, double pixels_offset,
139 float x_offset, float y_offset);
140
8a2fafcc 141 /**
834a4f1b 142 * Computes the scale factor from the scale index and vdiv settings.
8a2fafcc 143 */
368a37c2
SA
144 float get_resolution(int scale_index);
145
834a4f1b 146 void update_scale();
8a2fafcc 147
52c900ac
SA
148 void update_conversion_widgets();
149
430b94aa 150 void perform_autoranging(bool keep_divs, bool force_update);
73e377fe 151
4cffac16
SA
152protected:
153 void populate_popup_form(QWidget *parent, QFormLayout *form);
154
155private Q_SLOTS:
85715407
SA
156 void on_samples_added();
157
459db2c5
SA
158 void on_pos_vdivs_changed(int vdivs);
159 void on_neg_vdivs_changed(int vdivs);
cbb50547 160 void on_div_height_changed(int height);
4cffac16 161
368a37c2
SA
162 void on_resolution_changed(int index);
163
73e377fe
SA
164 void on_autoranging_changed(int state);
165
a970015f 166 void on_conversion_changed(int index);
52c900ac
SA
167 void on_conv_threshold_changed(int index=-1);
168 void on_delayed_conversion_starter();
a970015f 169
b8c4a95b
SA
170 void on_display_type_changed(int index);
171
aba1dd16 172private:
52c900ac
SA
173 QComboBox *resolution_cb_, *conversion_cb_, *conv_threshold_cb_,
174 *display_type_cb_;
cbb50547 175 QSpinBox *pvdiv_sb_, *nvdiv_sb_, *div_height_sb_;
368a37c2 176
52c900ac
SA
177 QTimer delayed_conversion_starter_;
178
834a4f1b 179 float scale_;
8a2fafcc
JH
180 int scale_index_;
181 int scale_index_drag_offset_;
37b9fed4
SA
182
183 int div_height_;
459db2c5 184 int pos_vdivs_, neg_vdivs_; // divs per positive/negative side
834a4f1b 185 float resolution_; // e.g. 10 for 10 V/div
73e377fe 186
a970015f 187 DisplayType display_type_;
73e377fe 188 bool autoranging_;
aba1dd16
JH
189};
190
1573bf16 191} // namespace trace
f4e57597 192} // namespace views
aba1dd16
JH
193} // namespace pv
194
f4e57597 195#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP