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