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