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