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
31 using std::shared_ptr;
44 class AnalogSignal : public Signal
49 static const QColor SignalColours[4];
50 static const QColor GridMajorColor, GridMinorColor;
51 static const QColor SamplingPointColour;
53 static const int64_t TracePaintBlockSize;
54 static const float EnvelopeThreshold;
56 static const int MaximumVDivs;
57 static const int MaxScaleIndex, MinScaleIndex;
58 static const int InfoTextMarginRight, InfoTextMarginBottom;
67 AnalogSignal(pv::Session &session, shared_ptr<data::SignalBase> base);
69 virtual ~AnalogSignal() = default;
71 shared_ptr<pv::data::SignalData> data() const;
73 virtual void save_settings(QSettings &settings) const;
75 virtual void restore_settings(QSettings &settings);
78 * Computes the vertical extents of the contents of this row item.
79 * @return A pair containing the minimum and maximum y-values.
81 pair<int, int> v_extents() const;
84 * Returns the offset to show the drag handle.
86 int scale_handle_offset() const;
89 * Handles the scale handle being dragged to an offset.
90 * @param offset the offset the scale handle was dragged to.
92 void scale_handle_dragged(int offset);
95 * @copydoc pv::view::Signal::signal_scale_handle_drag_release()
97 void scale_handle_drag_release();
100 * Paints the background layer of the signal with a QPainter
101 * @param p the QPainter to paint into.
102 * @param pp the painting parameters object to paint with..
104 void paint_back(QPainter &p, ViewItemPaintParams &pp);
107 * Paints the mid-layer of the signal with a QPainter
108 * @param p the QPainter to paint into.
109 * @param pp the painting parameters object to paint with..
111 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
114 * Paints the foreground layer of the item with a QPainter
115 * @param p the QPainter to paint into.
116 * @param pp the painting parameters object to paint with.
118 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
121 void paint_grid(QPainter &p, int y, int left, int right);
123 void paint_trace(QPainter &p,
124 const shared_ptr<pv::data::AnalogSegment> &segment,
125 int y, int left, const int64_t start, const int64_t end,
126 const double pixels_offset, const double samples_per_pixel);
128 void paint_envelope(QPainter &p,
129 const shared_ptr<pv::data::AnalogSegment> &segment,
130 int y, int left, const int64_t start, const int64_t end,
131 const double pixels_offset, const double samples_per_pixel);
133 void paint_logic_mid(QPainter &p, ViewItemPaintParams &pp);
135 void paint_logic_caps(QPainter &p, QLineF *const lines,
136 vector< pair<int64_t, bool> > &edges,
137 bool level, double samples_per_pixel, double pixels_offset,
138 float x_offset, float y_offset);
141 * Computes the scale factor from the scale index and vdiv settings.
143 float get_resolution(int scale_index);
147 void update_conversion_type();
149 void perform_autoranging(bool keep_divs, bool force_update);
152 void populate_popup_form(QWidget *parent, QFormLayout *form);
155 void on_samples_added();
157 void on_pos_vdivs_changed(int vdivs);
158 void on_neg_vdivs_changed(int vdivs);
160 void on_resolution_changed(int index);
162 void on_autoranging_changed(int state);
164 void on_conversion_changed(int index);
166 void on_display_type_changed(int index);
169 QComboBox *resolution_cb_, *conversion_cb_, *display_type_cb_;
170 QSpinBox *pvdiv_sb_, *nvdiv_sb_;
174 int scale_index_drag_offset_;
177 int pos_vdivs_, neg_vdivs_; // divs per positive/negative side
178 float resolution_; // e.g. 10 for 10 V/div
180 data::SignalBase::ConversionType conversion_type_;
181 DisplayType display_type_;
189 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ANALOGSIGNAL_HPP