]> sigrok.org Git - pulseview.git/blob - pv/views/trace/analogsignal.hpp
c588eb88bf26e33abb7e7a8ac0fc53e7dc30af47
[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 <memory>
24
25 #include <QColor>
26 #include <QComboBox>
27 #include <QSpinBox>
28
29 #include <pv/views/trace/signal.hpp>
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 QPen AxisPen;
51         static const QColor SignalColors[4];
52         static const QColor GridMajorColor, GridMinorColor;
53         static const QColor SamplingPointColor;
54         static const QColor SamplingPointColorLo;
55         static const QColor SamplingPointColorNe;
56         static const QColor SamplingPointColorHi;
57         static const QColor ThresholdColor;
58         static const QColor ThresholdColorLo;
59         static const QColor ThresholdColorNe;
60         static const QColor ThresholdColorHi;
61
62         static const int64_t TracePaintBlockSize;
63         static const float EnvelopeThreshold;
64
65         static const int MaximumVDivs;
66         static const int MaxScaleIndex, MinScaleIndex;
67         static const int InfoTextMarginRight, InfoTextMarginBottom;
68
69         enum DisplayType {
70                 DisplayAnalog = 0,
71                 DisplayConverted = 1,
72                 DisplayBoth = 2
73         };
74
75 public:
76         AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
77
78         shared_ptr<pv::data::SignalData> data() const;
79
80         virtual std::map<QString, QVariant> save_settings() const;
81         virtual void restore_settings(std::map<QString, QVariant> settings);
82
83         /**
84          * Computes the vertical extents of the contents of this row item.
85          * @return A pair containing the minimum and maximum y-values.
86          */
87         pair<int, int> v_extents() const;
88
89         /**
90          * Paints the background layer of the signal with a QPainter
91          * @param p the QPainter to paint into.
92          * @param pp the painting parameters object to paint with..
93          */
94         void paint_back(QPainter &p, ViewItemPaintParams &pp);
95
96         /**
97          * Paints the mid-layer of the signal with a QPainter
98          * @param p the QPainter to paint into.
99          * @param pp the painting parameters object to paint with..
100          */
101         void paint_mid(QPainter &p, ViewItemPaintParams &pp);
102
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, ViewItemPaintParams &pp);
109
110 private:
111         void paint_grid(QPainter &p, int y, int left, int right);
112
113         void paint_trace(QPainter &p,
114                 const shared_ptr<pv::data::AnalogSegment> &segment,
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,
119                 const shared_ptr<pv::data::AnalogSegment> &segment,
120                 int y, int left, const int64_t start, const int64_t end,
121                 const double pixels_offset, const double samples_per_pixel);
122
123         void paint_logic_mid(QPainter &p, ViewItemPaintParams &pp);
124
125         void paint_logic_caps(QPainter &p, QLineF *const lines,
126                 vector< pair<int64_t, bool> > &edges,
127                 bool level, double samples_per_pixel, double pixels_offset,
128                 float x_offset, float y_offset);
129
130         shared_ptr<pv::data::AnalogSegment> get_analog_segment_to_paint() const;
131         shared_ptr<pv::data::LogicSegment> get_logic_segment_to_paint() const;
132
133         /**
134          * Computes the scale factor from the scale index and vdiv settings.
135          */
136         float get_resolution(int scale_index);
137
138         void update_scale();
139
140         void update_conversion_widgets();
141
142         /**
143          * Determines the closest level change (i.e. edge) to a given sample, which
144          * is useful for e.g. the "snap to edge" functionality.
145          *
146          * @param sample_pos Sample to use
147          * @return The changes left and right of the given position
148          */
149         virtual vector<data::LogicSegment::EdgePair> get_nearest_level_changes(uint64_t sample_pos);
150
151         void perform_autoranging(bool keep_divs, bool force_update);
152
153         void reset_pixel_values();
154         void process_next_sample_value(float x, float value);
155
156 protected:
157         void populate_popup_form(QWidget *parent, QFormLayout *form);
158
159         virtual void hover_point_changed(const QPoint &hp);
160
161 private Q_SLOTS:
162         virtual void on_setting_changed(const QString &key, const QVariant &value);
163
164         void on_min_max_changed(float min, float max);
165
166         void on_pos_vdivs_changed(int vdivs);
167         void on_neg_vdivs_changed(int vdivs);
168         void on_div_height_changed(int height);
169
170         void on_resolution_changed(int index);
171
172         void on_autoranging_changed(int state);
173
174         void on_conversion_changed(int index);
175         void on_conv_threshold_changed(int index=-1);
176         void on_delayed_conversion_starter();
177
178         void on_display_type_changed(int index);
179
180 private:
181         QComboBox *resolution_cb_, *conversion_cb_, *conv_threshold_cb_,
182                 *display_type_cb_;
183         QSpinBox *pvdiv_sb_, *nvdiv_sb_, *div_height_sb_;
184
185         double signal_min_, signal_max_;  // Min/max values of this signal's analog data
186
187         bool show_analog_minor_grid_;
188         QColor high_fill_color_;
189         bool show_sampling_points_, fill_high_areas_;
190
191         int conversion_threshold_disp_mode_;
192
193         vector<float> value_at_pixel_pos_;
194         float value_at_hover_pos_;
195         float prev_value_at_pixel_;  // Only used during lookup table update
196         float min_value_at_pixel_, max_value_at_pixel_;  // Only used during lookup table update
197         int current_pixel_pos_;  // Only used during lookup table update
198
199         // ---------------------------------------------------------------------------
200         // Note: Make sure to update .. when adding a trace-configurable variable here
201         float scale_;
202         int scale_index_;
203
204         int div_height_;
205         int pos_vdivs_, neg_vdivs_;  // divs per positive/negative side
206         float resolution_;  // e.g. 10 for 10 V/div
207
208         DisplayType display_type_;
209         bool autoranging_;
210 };
211
212 } // namespace trace
213 } // namespace views
214 } // namespace pv
215
216 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP