2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP
40 class AnalogSignal : public Signal
45 static const QColor SignalColours[4];
46 static const QColor GridMajorColor, GridMinorColor;
48 static const float EnvelopeThreshold;
50 static const int MaximumVDivs;
51 static const int MaxScaleIndex, MinScaleIndex;
52 static const int InfoTextMarginRight, InfoTextMarginBottom;
55 AnalogSignal(pv::Session &session,
56 std::shared_ptr<data::SignalBase> base);
58 virtual ~AnalogSignal() = default;
60 std::shared_ptr<pv::data::SignalData> data() const;
62 virtual void save_settings(QSettings &settings) const;
64 virtual void restore_settings(QSettings &settings);
67 * Computes the vertical extents of the contents of this row item.
68 * @return A pair containing the minimum and maximum y-values.
70 std::pair<int, int> v_extents() const;
73 * Returns the offset to show the drag handle.
75 int scale_handle_offset() const;
78 * Handles the scale handle being dragged to an offset.
79 * @param offset the offset the scale handle was dragged to.
81 void scale_handle_dragged(int offset);
84 * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
86 void scale_handle_drag_release();
89 * Paints the background layer of the signal with a QPainter
90 * @param p the QPainter to paint into.
91 * @param pp the painting parameters object to paint with..
93 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
96 * Paints the mid-layer of the signal with a QPainter
97 * @param p the QPainter to paint into.
98 * @param pp the painting parameters object to paint with..
100 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
103 * Paints the foreground layer of the item with a QPainter
104 * @param p the QPainter to paint into.
105 * @param pp the painting parameters object to paint with.
107 void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
110 void paint_grid(QPainter &p, int y, int left, int right);
112 void paint_trace(QPainter &p,
113 const std::shared_ptr<pv::data::AnalogSegment> &segment,
114 int y, int left, const int64_t start, const int64_t end,
115 const double pixels_offset, const double samples_per_pixel);
117 void paint_envelope(QPainter &p,
118 const std::shared_ptr<pv::data::AnalogSegment> &segment,
119 int y, int left, const int64_t start, const int64_t end,
120 const double pixels_offset, const double samples_per_pixel);
123 * Computes the scale factor from the scale index and vdiv settings.
125 float get_resolution(int scale_index);
129 void perform_autoranging(bool force_update = false);
132 void populate_popup_form(QWidget *parent, QFormLayout *form);
135 void on_samples_added();
137 void on_pos_vdivs_changed(int vdivs);
138 void on_neg_vdivs_changed(int vdivs);
140 void on_resolution_changed(int index);
142 void on_autoranging_changed(int state);
145 QComboBox *resolution_cb_;
149 int scale_index_drag_offset_;
152 int pos_vdivs_, neg_vdivs_; // divs per positive/negative side
153 float resolution_; // e.g. 10 for 10 V/div
158 } // namespace TraceView
162 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP