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