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