]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/analogsignal.hpp
AnalogSignal: Add conversion type and display type
[pulseview.git] / pv / view / 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
29using std::pair;
30using std::shared_ptr;
31
32namespace pv {
33
34namespace data {
35class Analog;
36class AnalogSegment;
37class SignalBase;
38}
39
40namespace views {
41namespace TraceView {
42
43class AnalogSignal : public Signal
44{
45 Q_OBJECT
46
47private:
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
64public:
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
118private:
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 /**
132 * Computes the scale factor from the scale index and vdiv settings.
133 */
134 float get_resolution(int scale_index);
135
136 void update_scale();
137
138 void perform_autoranging(bool force_update = false);
139
140protected:
141 void populate_popup_form(QWidget *parent, QFormLayout *form);
142
143private Q_SLOTS:
144 void on_samples_added();
145
146 void on_pos_vdivs_changed(int vdivs);
147 void on_neg_vdivs_changed(int vdivs);
148
149 void on_resolution_changed(int index);
150
151 void on_autoranging_changed(int state);
152
153 void on_conversion_changed(int index);
154
155private:
156 QComboBox *resolution_cb_, *conversion_cb_, *display_type_cb_;
157
158 float scale_;
159 int scale_index_;
160 int scale_index_drag_offset_;
161
162 int div_height_;
163 int pos_vdivs_, neg_vdivs_; // divs per positive/negative side
164 float resolution_; // e.g. 10 for 10 V/div
165
166 data::SignalBase::ConversionType conversion_type_;
167 DisplayType display_type_;
168 bool autoranging_;
169};
170
171} // namespace TraceView
172} // namespace views
173} // namespace pv
174
175#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP