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