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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef PULSEVIEW_PV_VIEW_DECODETRACE_H
22 #define PULSEVIEW_PV_VIEW_DECODETRACE_H
29 #include <QSignalMapper>
31 #include <boost/shared_ptr.hpp>
33 #include <pv/prop/binding/decoderoptions.h>
53 class DecodeTrace : public Trace
60 const QComboBox *_combo;
61 const boost::shared_ptr<pv::data::decode::Decoder> _decoder;
62 const srd_probe *_probe;
66 static const QColor DecodeColours[4];
67 static const QColor ErrorBgColour;
68 static const QColor NoDecodeColour;
70 static const double EndCapWidth;
71 static const int DrawPadding;
73 static const QColor Colours[7];
76 DecodeTrace(pv::SigSession &session,
77 boost::shared_ptr<pv::data::DecoderStack> decoder_stack,
82 const boost::shared_ptr<pv::data::DecoderStack>& decoder() const;
84 void set_view(pv::view::View *view);
87 * Paints the background layer of the trace with a QPainter
88 * @param p the QPainter to paint into.
89 * @param left the x-coordinate of the left edge of the signal.
90 * @param right the x-coordinate of the right edge of the signal.
92 void paint_back(QPainter &p, int left, int right);
95 * Paints the mid-layer of the trace with a QPainter
96 * @param p the QPainter to paint into.
97 * @param left the x-coordinate of the left edge of the signal
98 * @param right the x-coordinate of the right edge of the signal
100 void paint_mid(QPainter &p, int left, int right);
102 void populate_popup_form(QWidget *parent, QFormLayout *form);
104 QMenu* create_context_menu(QWidget *parent);
106 void delete_pressed();
109 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
110 QColor text_colour, int text_height, int left, int right,
111 double samples_per_pixel, double pixels_offset, int y) const;
113 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
114 QColor fill, QColor outline, QColor text_color, int h, double x,
117 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
118 QColor fill, QColor outline, QColor text_color, int h, double start,
119 double end, int y) const;
121 void draw_error(QPainter &p, const QString &message,
122 int left, int right);
124 void draw_unresolved_period(QPainter &p, int h, int left,
125 int right, double samples_per_pixel, double pixels_offset);
127 void create_decoder_form(int index,
128 boost::shared_ptr<pv::data::decode::Decoder> &dec,
129 QWidget *parent, QFormLayout *form);
131 QComboBox* create_probe_selector(QWidget *parent,
132 const boost::shared_ptr<pv::data::decode::Decoder> &dec,
133 const srd_probe *const probe);
135 void commit_decoder_probes(
136 boost::shared_ptr<data::decode::Decoder> &dec);
138 void commit_probes();
141 void on_new_decode_data();
145 void on_probe_selected(int);
147 void on_stack_decoder(srd_decoder *decoder);
149 void on_delete_decoder(int index);
152 boost::shared_ptr<pv::data::DecoderStack> _decoder_stack;
154 uint64_t _decode_start, _decode_end;
156 std::list< boost::shared_ptr<pv::prop::binding::DecoderOptions> >
159 std::list<ProbeSelector> _probe_selectors;
161 QSignalMapper _delete_mapper;
167 #endif // PULSEVIEW_PV_VIEW_DECODETRACE_H