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_DECODETRACE_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
31 #include <QSignalMapper>
34 #include <pv/binding/decoder.hpp>
35 #include <pv/data/decode/row.hpp>
36 #include <pv/data/signalbase.hpp>
41 using std::shared_ptr;
66 class DecoderGroupBox;
72 class DecodeTrace : public Trace
77 static const QColor DecodeColours[4];
78 static const QColor ErrorBgColour;
79 static const QColor NoDecodeColour;
81 static const int ArrowSize;
82 static const double EndCapWidth;
83 static const int RowTitleMargin;
84 static const int DrawPadding;
86 static const int MaxTraceUpdateRate;
88 static const QColor Colours[16];
89 static const QColor OutlineColours[16];
92 DecodeTrace(pv::Session &session, shared_ptr<data::SignalBase> signalbase,
97 shared_ptr<data::SignalBase> base() const;
100 * Computes the vertical extents of the contents of this row item.
101 * @return A pair containing the minimum and maximum y-values.
103 pair<int, int> v_extents() const;
106 * Paints the background layer of the trace with a QPainter
107 * @param p the QPainter to paint into.
108 * @param pp the painting parameters object to paint with..
110 void paint_back(QPainter &p, ViewItemPaintParams &pp);
113 * Paints the mid-layer of the trace with a QPainter
114 * @param p the QPainter to paint into.
115 * @param pp the painting parameters object to paint with.
117 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
120 * Paints the foreground layer of the trace with a QPainter
121 * @param p the QPainter to paint into.
122 * @param pp the painting parameters object to paint with.
124 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
126 void populate_popup_form(QWidget *parent, QFormLayout *form);
128 QMenu* create_context_menu(QWidget *parent);
130 void delete_pressed();
133 void draw_annotations(vector<pv::data::decode::Annotation> annotations,
134 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
135 size_t base_colour, int row_title_width);
137 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
138 int h, const ViewItemPaintParams &pp, int y,
139 size_t base_colour, int row_title_width) const;
141 void draw_annotation_block(vector<pv::data::decode::Annotation> annotations,
142 QPainter &p, int h, int y, size_t base_colour) const;
144 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
145 int h, double x, int y) const;
147 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
148 int h, double start, double end, int y, const ViewItemPaintParams &pp,
149 int row_title_width) const;
151 void draw_error(QPainter &p, const QString &message,
152 const ViewItemPaintParams &pp);
154 void draw_unresolved_period(QPainter &p, int h, int left,
157 pair<double, double> get_pixels_offset_samples_per_pixel() const;
160 * Determines the start and end sample for a given pixel range.
161 * @param x_start the X coordinate of the start sample in the view
162 * @param x_end the X coordinate of the end sample in the view
163 * @return Returns a pair containing the start sample and the end
164 * sample that correspond to the start and end coordinates.
166 pair<uint64_t, uint64_t> get_sample_range(int x_start, int x_end) const;
168 int get_row_at_point(const QPoint &point);
170 const QString get_annotation_at_point(const QPoint &point);
172 void create_decoder_form(int index,
173 shared_ptr<pv::data::decode::Decoder> &dec,
174 QWidget *parent, QFormLayout *form);
176 QComboBox* create_channel_selector(QWidget *parent,
177 const data::DecodeChannel *ch);
178 QComboBox* create_channel_selector_init_state(QWidget *parent,
179 const data::DecodeChannel *ch);
182 void hover_point_changed(const QPoint &hp);
185 void on_new_annotations();
186 void on_delayed_trace_update();
187 void on_decode_reset();
188 void on_decode_finished();
192 void on_channel_selected(int);
194 void on_channels_updated();
196 void on_init_state_changed(int);
198 void on_stack_decoder(srd_decoder *decoder);
200 void on_delete_decoder(int index);
202 void on_show_hide_decoder(int index);
205 pv::Session &session_;
206 shared_ptr<data::DecodeSignal> decode_signal_;
208 vector<data::decode::Row> visible_rows_;
209 uint64_t decode_start_, decode_end_;
211 map<QComboBox*, uint16_t> channel_id_map_; // channel selector -> decode channel ID
212 map<QComboBox*, uint16_t> init_state_map_; // init state selector -> decode channel ID
213 list< shared_ptr<pv::binding::Decoder> > bindings_;
215 vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
217 map<data::decode::Row, int> row_title_widths_;
218 int row_height_, max_visible_rows_;
220 int min_useful_label_width_;
222 QSignalMapper delete_mapper_, show_hide_mapper_;
224 QTimer delayed_trace_updater_;
231 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP