]> sigrok.org Git - pulseview.git/blame - pv/view/analogsignal.hpp
Rename Trace::channel_ to Trace::base_, including dependencies
[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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEW_ANALOGSIGNAL_HPP
22#define PULSEVIEW_PV_VIEW_ANALOGSIGNAL_HPP
aba1dd16 23
2acdb232 24#include "signal.hpp"
aba1dd16 25
f9abf97e 26#include <memory>
aba1dd16 27
368a37c2
SA
28#include <QComboBox>
29
aba1dd16
JH
30namespace pv {
31
1b1ec774
JH
32namespace data {
33class Analog;
f3d66e52 34class AnalogSegment;
bf0edd2b 35class SignalBase;
1b1ec774 36}
aba1dd16
JH
37
38namespace view {
39
40class AnalogSignal : public Signal
41{
4cffac16
SA
42 Q_OBJECT
43
568b90d4
JH
44private:
45 static const QColor SignalColours[4];
37b9fed4 46 static const QColor GridMajorColor, GridMinorColor;
568b90d4 47
7c68ddae
JH
48 static const float EnvelopeThreshold;
49
4cffac16 50 static const int MaximumVDivs;
368a37c2 51 static const int MaxScaleIndex, MinScaleIndex;
03cc651d 52 static const int InfoTextMarginRight, InfoTextMarginBottom;
4cffac16 53
aba1dd16 54public:
2b81ae46 55 AnalogSignal(pv::Session &session,
73a25a6e 56 std::shared_ptr<data::SignalBase> base,
f9abf97e 57 std::shared_ptr<pv::data::Analog> data);
aba1dd16 58
c6246dc5 59 virtual ~AnalogSignal() = default;
f459c540 60
f9abf97e 61 std::shared_ptr<pv::data::SignalData> data() const;
9a0cd293 62
f9abf97e 63 std::shared_ptr<pv::data::Analog> analog_data() const;
3009b5b3 64
a5d93c27
JH
65 /**
66 * Computes the vertical extents of the contents of this row item.
67 * @return A pair containing the minimum and maximum y-values.
68 */
69 std::pair<int, int> v_extents() const;
70
214470fc
JH
71 /**
72 * Returns the offset to show the drag handle.
73 */
74 int scale_handle_offset() const;
75
76 /**
77 * Handles the scale handle being dragged to an offset.
78 * @param offset the offset the scale handle was dragged to.
79 */
80 void scale_handle_dragged(int offset);
81
8a2fafcc
JH
82 /**
83 * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
84 */
85 void scale_handle_drag_release();
86
aba1dd16 87 /**
fe08b6e8 88 * Paints the background layer of the signal with a QPainter
aba1dd16 89 * @param p the QPainter to paint into.
3eb29afd 90 * @param pp the painting parameters object to paint with..
223d0c37 91 */
5b5fa4da 92 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
fe08b6e8
JH
93
94 /**
95 * Paints the mid-layer of the signal with a QPainter
96 * @param p the QPainter to paint into.
3eb29afd 97 * @param pp the painting parameters object to paint with..
223d0c37 98 */
5b5fa4da 99 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
aba1dd16 100
03cc651d
SA
101 /**
102 * Paints the foreground layer of the item 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_fore(QPainter &p, const ViewItemPaintParams &pp);
107
7c68ddae 108private:
37b9fed4
SA
109 void paint_grid(QPainter &p, int y, int left, int right);
110
7c68ddae 111 void paint_trace(QPainter &p,
f3d66e52 112 const std::shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
113 int y, int left, const int64_t start, const int64_t end,
114 const double pixels_offset, const double samples_per_pixel);
115
116 void paint_envelope(QPainter &p,
f3d66e52 117 const std::shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
118 int y, int left, const int64_t start, const int64_t end,
119 const double pixels_offset, const double samples_per_pixel);
120
8a2fafcc 121 /**
834a4f1b 122 * Computes the scale factor from the scale index and vdiv settings.
8a2fafcc 123 */
368a37c2
SA
124 float get_resolution(int scale_index);
125
834a4f1b 126 void update_scale();
8a2fafcc 127
4cffac16
SA
128protected:
129 void populate_popup_form(QWidget *parent, QFormLayout *form);
130
131private Q_SLOTS:
132 void on_vdivs_changed(int vdivs);
133
368a37c2
SA
134 void on_resolution_changed(int index);
135
aba1dd16 136private:
8dbbc7f0 137 std::shared_ptr<pv::data::Analog> data_;
8a2fafcc 138
368a37c2
SA
139 QComboBox *resolution_cb_;
140
834a4f1b 141 float scale_;
8a2fafcc
JH
142 int scale_index_;
143 int scale_index_drag_offset_;
37b9fed4
SA
144
145 int div_height_;
146 int vdivs_; // divs per positive/negative side
834a4f1b 147 float resolution_; // e.g. 10 for 10 V/div
aba1dd16
JH
148};
149
150} // namespace view
151} // namespace pv
152
7a01bd36 153#endif // PULSEVIEW_PV_VIEW_ANALOGSIGNAL_HPP