]> sigrok.org Git - pulseview.git/blob - pv/views/trace/analogsignal.hpp
885856dff999a84d5428cff55eeb43de8a102d97
[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 <QComboBox>
26 #include <QSpinBox>
27
28 #include <pv/views/trace/signal.hpp>
29
30 using std::pair;
31 using std::shared_ptr;
32
33 namespace pv {
34
35 namespace data {
36 class Analog;
37 class AnalogSegment;
38 class SignalBase;
39 }
40
41 namespace views {
42 namespace trace {
43
44 class AnalogSignal : public Signal
45 {
46         Q_OBJECT
47
48 private:
49         static const QPen AxisPen;
50         static const QColor SignalColors[4];
51         static const QColor GridMajorColor, GridMinorColor;
52         static const QColor SamplingPointColor;
53         static const QColor SamplingPointColorLo;
54         static const QColor SamplingPointColorNe;
55         static const QColor SamplingPointColorHi;
56         static const QColor ThresholdColor;
57         static const QColor ThresholdColorLo;
58         static const QColor ThresholdColorNe;
59         static const QColor ThresholdColorHi;
60
61         static const int64_t TracePaintBlockSize;
62         static const float EnvelopeThreshold;
63
64         static const int MaximumVDivs;
65         static const int MaxScaleIndex, MinScaleIndex;
66         static const int InfoTextMarginRight, InfoTextMarginBottom;
67
68         enum DisplayType {
69                 DisplayAnalog = 0,
70                 DisplayConverted = 1,
71                 DisplayBoth = 2
72         };
73
74 public:
75         AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
76
77         shared_ptr<pv::data::SignalData> data() const;
78
79         virtual void save_settings(QSettings &settings) const;
80
81         virtual void restore_settings(QSettings &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         virtual void on_setting_changed(const QString &key, const QVariant &value);
90
91         /**
92          * Paints the background layer of the signal with a QPainter
93          * @param p the QPainter to paint into.
94          * @param pp the painting parameters object to paint with..
95          */
96         void paint_back(QPainter &p, ViewItemPaintParams &pp);
97
98         /**
99          * Paints the mid-layer of the signal with a QPainter
100          * @param p the QPainter to paint into.
101          * @param pp the painting parameters object to paint with..
102          */
103         void paint_mid(QPainter &p, ViewItemPaintParams &pp);
104
105         /**
106          * Paints the foreground layer of the item with a QPainter
107          * @param p the QPainter to paint into.
108          * @param pp the painting parameters object to paint with.
109          */
110         void paint_fore(QPainter &p, ViewItemPaintParams &pp);
111
112 private:
113         void paint_grid(QPainter &p, int y, int left, int right);
114
115         void paint_trace(QPainter &p,
116                 const shared_ptr<pv::data::AnalogSegment> &segment,
117                 int y, int left, const int64_t start, const int64_t end,
118                 const double pixels_offset, const double samples_per_pixel);
119
120         void paint_envelope(QPainter &p,
121                 const shared_ptr<pv::data::AnalogSegment> &segment,
122                 int y, int left, const int64_t start, const int64_t end,
123                 const double pixels_offset, const double samples_per_pixel);
124
125         void paint_logic_mid(QPainter &p, ViewItemPaintParams &pp);
126
127         void paint_logic_caps(QPainter &p, QLineF *const lines,
128                 vector< pair<int64_t, bool> > &edges,
129                 bool level, double samples_per_pixel, double pixels_offset,
130                 float x_offset, float y_offset);
131
132         shared_ptr<pv::data::AnalogSegment> get_analog_segment_to_paint() const;
133         shared_ptr<pv::data::LogicSegment> get_logic_segment_to_paint() const;
134
135         /**
136          * Computes the scale factor from the scale index and vdiv settings.
137          */
138         float get_resolution(int scale_index);
139
140         void update_scale();
141
142         void update_conversion_widgets();
143
144         void perform_autoranging(bool keep_divs, bool force_update);
145
146         void reset_pixel_values();
147         void process_next_sample_value(float x, float value);
148
149 protected:
150         void populate_popup_form(QWidget *parent, QFormLayout *form);
151
152         virtual void hover_point_changed(const QPoint &hp);
153
154 private Q_SLOTS:
155         void on_min_max_changed(float min, float max);
156
157         void on_pos_vdivs_changed(int vdivs);
158         void on_neg_vdivs_changed(int vdivs);
159         void on_div_height_changed(int height);
160
161         void on_resolution_changed(int index);
162
163         void on_autoranging_changed(int state);
164
165         void on_conversion_changed(int index);
166         void on_conv_threshold_changed(int index=-1);
167         void on_delayed_conversion_starter();
168
169         void on_display_type_changed(int index);
170
171         void on_settingViewConversionThresholdDispMode_changed(const QVariant new_value);
172
173 private:
174         QComboBox *resolution_cb_, *conversion_cb_, *conv_threshold_cb_,
175                 *display_type_cb_;
176         QSpinBox *pvdiv_sb_, *nvdiv_sb_, *div_height_sb_;
177
178         float scale_;
179         int scale_index_;
180
181         int div_height_;
182         int pos_vdivs_, neg_vdivs_;  // divs per positive/negative side
183         float resolution_; // e.g. 10 for 10 V/div
184
185         DisplayType display_type_;
186         bool autoranging_;
187         int conversion_threshold_disp_mode_;
188
189         vector<float> value_at_pixel_pos_;
190         float value_at_hover_pos_;
191         float prev_value_at_pixel_;  // Only used during lookup table update
192         float min_value_at_pixel_, max_value_at_pixel_;  // Only used during lookup table update
193         int current_pixel_pos_;  // Only used during lookup table update
194 };
195
196 } // namespace trace
197 } // namespace views
198 } // namespace pv
199
200 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP