]> sigrok.org Git - pulseview.git/blame - pv/view/analogsignal.hpp
AnalogSignal: Add conversion type and display type
[pulseview.git] / pv / view / analogsignal.hpp
CommitLineData
aba1dd16
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
aba1dd16 22
2acdb232 23#include "signal.hpp"
aba1dd16 24
f9abf97e 25#include <memory>
aba1dd16 26
368a37c2
SA
27#include <QComboBox>
28
6f925ba9
UH
29using std::pair;
30using std::shared_ptr;
31
aba1dd16
JH
32namespace pv {
33
1b1ec774
JH
34namespace data {
35class Analog;
f3d66e52 36class AnalogSegment;
bf0edd2b 37class SignalBase;
1b1ec774 38}
aba1dd16 39
f4e57597
SA
40namespace views {
41namespace TraceView {
aba1dd16
JH
42
43class AnalogSignal : public Signal
44{
4cffac16
SA
45 Q_OBJECT
46
568b90d4
JH
47private:
48 static const QColor SignalColours[4];
37b9fed4 49 static const QColor GridMajorColor, GridMinorColor;
8de1e1b2 50 static const QColor SamplingPointColour;
568b90d4 51
7c68ddae
JH
52 static const float EnvelopeThreshold;
53
4cffac16 54 static const int MaximumVDivs;
368a37c2 55 static const int MaxScaleIndex, MinScaleIndex;
03cc651d 56 static const int InfoTextMarginRight, InfoTextMarginBottom;
4cffac16 57
a970015f
SA
58 enum DisplayType {
59 DisplayAnalog = 0,
60 DisplayConverted = 1,
61 DisplayBoth = 2
62 };
63
aba1dd16 64public:
6f925ba9 65 AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
aba1dd16 66
c6246dc5 67 virtual ~AnalogSignal() = default;
f459c540 68
6f925ba9 69 shared_ptr<pv::data::SignalData> data() const;
9a0cd293 70
3a21afa6
SA
71 virtual void save_settings(QSettings &settings) const;
72
73 virtual void restore_settings(QSettings &settings);
74
a5d93c27
JH
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 */
6f925ba9 79 pair<int, int> v_extents() const;
a5d93c27 80
214470fc
JH
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
8a2fafcc
JH
92 /**
93 * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
94 */
95 void scale_handle_drag_release();
96
aba1dd16 97 /**
fe08b6e8 98 * Paints the background layer of the signal with a QPainter
aba1dd16 99 * @param p the QPainter to paint into.
3eb29afd 100 * @param pp the painting parameters object to paint with..
223d0c37 101 */
5b5fa4da 102 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
fe08b6e8
JH
103
104 /**
105 * Paints the mid-layer of the signal with a QPainter
106 * @param p the QPainter to paint into.
3eb29afd 107 * @param pp the painting parameters object to paint with..
223d0c37 108 */
5b5fa4da 109 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
aba1dd16 110
03cc651d
SA
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
7c68ddae 118private:
37b9fed4
SA
119 void paint_grid(QPainter &p, int y, int left, int right);
120
7c68ddae 121 void paint_trace(QPainter &p,
6f925ba9 122 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
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,
6f925ba9 127 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
128 int y, int left, const int64_t start, const int64_t end,
129 const double pixels_offset, const double samples_per_pixel);
130
8a2fafcc 131 /**
834a4f1b 132 * Computes the scale factor from the scale index and vdiv settings.
8a2fafcc 133 */
368a37c2
SA
134 float get_resolution(int scale_index);
135
834a4f1b 136 void update_scale();
8a2fafcc 137
73e377fe
SA
138 void perform_autoranging(bool force_update = false);
139
4cffac16
SA
140protected:
141 void populate_popup_form(QWidget *parent, QFormLayout *form);
142
143private Q_SLOTS:
85715407
SA
144 void on_samples_added();
145
459db2c5
SA
146 void on_pos_vdivs_changed(int vdivs);
147 void on_neg_vdivs_changed(int vdivs);
4cffac16 148
368a37c2
SA
149 void on_resolution_changed(int index);
150
73e377fe
SA
151 void on_autoranging_changed(int state);
152
a970015f
SA
153 void on_conversion_changed(int index);
154
aba1dd16 155private:
a970015f 156 QComboBox *resolution_cb_, *conversion_cb_, *display_type_cb_;
368a37c2 157
834a4f1b 158 float scale_;
8a2fafcc
JH
159 int scale_index_;
160 int scale_index_drag_offset_;
37b9fed4
SA
161
162 int div_height_;
459db2c5 163 int pos_vdivs_, neg_vdivs_; // divs per positive/negative side
834a4f1b 164 float resolution_; // e.g. 10 for 10 V/div
73e377fe 165
a970015f
SA
166 data::SignalBase::ConversionType conversion_type_;
167 DisplayType display_type_;
73e377fe 168 bool autoranging_;
aba1dd16
JH
169};
170
f4e57597
SA
171} // namespace TraceView
172} // namespace views
aba1dd16
JH
173} // namespace pv
174
f4e57597 175#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP