]> sigrok.org Git - pulseview.git/blob - pv/view/analogsignal.hpp
Don't use std:: in the code directly (where possible).
[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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
22
23 #include "signal.hpp"
24
25 #include <memory>
26
27 #include <QComboBox>
28
29 using std::pair;
30 using std::shared_ptr;
31
32 namespace pv {
33
34 namespace data {
35 class Analog;
36 class AnalogSegment;
37 class SignalBase;
38 }
39
40 namespace views {
41 namespace TraceView {
42
43 class AnalogSignal : public Signal
44 {
45         Q_OBJECT
46
47 private:
48         static const QColor SignalColours[4];
49         static const QColor GridMajorColor, GridMinorColor;
50         static const QColor SamplingPointColour;
51
52         static const float EnvelopeThreshold;
53
54         static const int MaximumVDivs;
55         static const int MaxScaleIndex, MinScaleIndex;
56         static const int InfoTextMarginRight, InfoTextMarginBottom;
57
58 public:
59         AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
60
61         virtual ~AnalogSignal() = default;
62
63         shared_ptr<pv::data::SignalData> data() const;
64
65         virtual void save_settings(QSettings &settings) const;
66
67         virtual void restore_settings(QSettings &settings);
68
69         /**
70          * Computes the vertical extents of the contents of this row item.
71          * @return A pair containing the minimum and maximum y-values.
72          */
73         pair<int, int> v_extents() const;
74
75         /**
76          * Returns the offset to show the drag handle.
77          */
78         int scale_handle_offset() const;
79
80         /**
81          * Handles the scale handle being dragged to an offset.
82          * @param offset the offset the scale handle was dragged to.
83          */
84         void scale_handle_dragged(int offset);
85
86         /**
87          * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
88          */
89         void scale_handle_drag_release();
90
91         /**
92          * Paints the background 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_back(QPainter &p, const ViewItemPaintParams &pp);
97
98         /**
99          * Paints the mid-layer of the signal 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_mid(QPainter &p, const ViewItemPaintParams &pp);
104
105         /**
106          * Paints the foreground layer of the item with a QPainter
107          * @param p the QPainter to paint into.
108          * @param pp the painting parameters object to paint with.
109          */
110         void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
111
112 private:
113         void paint_grid(QPainter &p, int y, int left, int right);
114
115         void paint_trace(QPainter &p,
116                 const 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         void paint_envelope(QPainter &p,
121                 const shared_ptr<pv::data::AnalogSegment> &segment,
122                 int y, int left, const int64_t start, const int64_t end,
123                 const double pixels_offset, const double samples_per_pixel);
124
125         /**
126          * Computes the scale factor from the scale index and vdiv settings.
127          */
128         float get_resolution(int scale_index);
129
130         void update_scale();
131
132         void perform_autoranging(bool force_update = false);
133
134 protected:
135         void populate_popup_form(QWidget *parent, QFormLayout *form);
136
137 private Q_SLOTS:
138         void on_samples_added();
139
140         void on_pos_vdivs_changed(int vdivs);
141         void on_neg_vdivs_changed(int vdivs);
142
143         void on_resolution_changed(int index);
144
145         void on_autoranging_changed(int state);
146
147 private:
148         QComboBox *resolution_cb_;
149
150         float scale_;
151         int scale_index_;
152         int scale_index_drag_offset_;
153
154         int div_height_;
155         int pos_vdivs_, neg_vdivs_;  // divs per positive/negative side
156         float resolution_; // e.g. 10 for 10 V/div
157
158         bool autoranging_;
159 };
160
161 } // namespace TraceView
162 } // namespace views
163 } // namespace pv
164
165 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP