]> sigrok.org Git - pulseview.git/blob - pv/views/trace/analogsignal.hpp
Implement A2L presets and custom threshold handling
[pulseview.git] / pv / views / trace / analogsignal.hpp
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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
22
23 #include "signal.hpp"
24
25 #include <memory>
26
27 #include <QComboBox>
28 #include <QSpinBox>
29 #include <QTimer>
30
31 using std::pair;
32 using std::shared_ptr;
33
34 namespace pv {
35
36 namespace data {
37 class Analog;
38 class AnalogSegment;
39 class SignalBase;
40 }
41
42 namespace views {
43 namespace trace {
44
45 class AnalogSignal : public Signal
46 {
47         Q_OBJECT
48
49 private:
50         static const QColor SignalColours[4];
51         static const QColor GridMajorColor, GridMinorColor;
52         static const QColor SamplingPointColour;
53
54         static const int64_t TracePaintBlockSize;
55         static const float EnvelopeThreshold;
56
57         static const int MaximumVDivs;
58         static const int MaxScaleIndex, MinScaleIndex;
59         static const int InfoTextMarginRight, InfoTextMarginBottom;
60
61         enum DisplayType {
62                 DisplayAnalog = 0,
63                 DisplayConverted = 1,
64                 DisplayBoth = 2
65         };
66
67 public:
68         AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
69
70         virtual ~AnalogSignal() = default;
71
72         shared_ptr<pv::data::SignalData> data() const;
73
74         virtual void save_settings(QSettings &settings) const;
75
76         virtual void restore_settings(QSettings &settings);
77
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          */
82         pair<int, int> v_extents() const;
83
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
95         /**
96          * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
97          */
98         void scale_handle_drag_release();
99
100         /**
101          * Paints the background layer of the signal with a QPainter
102          * @param p the QPainter to paint into.
103          * @param pp the painting parameters object to paint with..
104          */
105         void paint_back(QPainter &p, ViewItemPaintParams &pp);
106
107         /**
108          * Paints the mid-layer of the signal with a QPainter
109          * @param p the QPainter to paint into.
110          * @param pp the painting parameters object to paint with..
111          */
112         void paint_mid(QPainter &p, ViewItemPaintParams &pp);
113
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          */
119         void paint_fore(QPainter &p, ViewItemPaintParams &pp);
120
121 private:
122         void paint_grid(QPainter &p, int y, int left, int right);
123
124         void paint_trace(QPainter &p,
125                 const shared_ptr<pv::data::AnalogSegment> &segment,
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,
130                 const shared_ptr<pv::data::AnalogSegment> &segment,
131                 int y, int left, const int64_t start, const int64_t end,
132                 const double pixels_offset, const double samples_per_pixel);
133
134         void paint_logic_mid(QPainter &p, ViewItemPaintParams &pp);
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
141         /**
142          * Computes the scale factor from the scale index and vdiv settings.
143          */
144         float get_resolution(int scale_index);
145
146         void update_scale();
147
148         void update_conversion_widgets();
149
150         void perform_autoranging(bool keep_divs, bool force_update);
151
152 protected:
153         void populate_popup_form(QWidget *parent, QFormLayout *form);
154
155 private Q_SLOTS:
156         void on_samples_added();
157
158         void on_pos_vdivs_changed(int vdivs);
159         void on_neg_vdivs_changed(int vdivs);
160         void on_div_height_changed(int height);
161
162         void on_resolution_changed(int index);
163
164         void on_autoranging_changed(int state);
165
166         void on_conversion_changed(int index);
167         void on_conv_threshold_changed(int index=-1);
168         void on_delayed_conversion_starter();
169
170         void on_display_type_changed(int index);
171
172 private:
173         QComboBox *resolution_cb_, *conversion_cb_, *conv_threshold_cb_,
174                 *display_type_cb_;
175         QSpinBox *pvdiv_sb_, *nvdiv_sb_, *div_height_sb_;
176
177         QTimer delayed_conversion_starter_;
178
179         float scale_;
180         int scale_index_;
181         int scale_index_drag_offset_;
182
183         int div_height_;
184         int pos_vdivs_, neg_vdivs_;  // divs per positive/negative side
185         float resolution_; // e.g. 10 for 10 V/div
186
187         DisplayType display_type_;
188         bool autoranging_;
189 };
190
191 } // namespace trace
192 } // namespace views
193 } // namespace pv
194
195 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP