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