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