]> sigrok.org Git - pulseview.git/blame - pv/views/trace/decodetrace.hpp
DecodeTrace: Fix on_setting_changed() handling
[pulseview.git] / pv / views / trace / decodetrace.hpp
CommitLineData
55d3603d
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
55d3603d
JH
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
55d3603d 22
2acdb232 23#include "trace.hpp"
55d3603d 24
7491a29f 25#include <list>
4e5a4405 26#include <map>
f9abf97e 27#include <memory>
50631798 28#include <vector>
4e5a4405 29
9ba13f5e 30#include <QColor>
9f97b357 31#include <QComboBox>
cf0a3c9c 32#include <QPushButton>
613d097c 33#include <QSignalMapper>
5b6ae103 34#include <QTimer>
613d097c 35
3cc9ad7b 36#include <pv/binding/decoder.hpp>
a82325d1 37#include <pv/data/decode/decoder.hpp>
20d90d22 38#include <pv/data/decode/annotation.hpp>
2acdb232 39#include <pv/data/decode/row.hpp>
aca9aa83 40#include <pv/data/signalbase.hpp>
4e5a4405 41
6f925ba9
UH
42using std::list;
43using std::map;
44using std::pair;
45using std::shared_ptr;
46using std::vector;
47
8bd26d8b 48struct srd_channel;
e563a7c0 49struct srd_decoder;
4e5a4405 50
55d3603d 51namespace pv {
119aff65 52
2b81ae46 53class Session;
83c23cc9 54
119aff65 55namespace data {
9f97b357 56struct DecodeChannel;
ad908057 57class DecodeSignal;
7491a29f
JH
58
59namespace decode {
60class Decoder;
61}
20f59e95 62} // namespace data
119aff65 63
dd048a7e
JH
64namespace widgets {
65class DecoderGroupBox;
66}
67
f4e57597 68namespace views {
1573bf16 69namespace trace {
55d3603d 70
b9329558 71class DecodeTrace : public Trace
55d3603d 72{
e0fc5810
JH
73 Q_OBJECT
74
06bb4e6a 75private:
641574bc
SA
76 static const QColor ErrorBgColor;
77 static const QColor NoDecodeColor;
06bb4e6a 78
88908838 79 static const int ArrowSize;
06e810f2 80 static const double EndCapWidth;
aee9dcf3 81 static const int RowTitleMargin;
06e810f2
JH
82 static const int DrawPadding;
83
5b6ae103
SA
84 static const int MaxTraceUpdateRate;
85
55d3603d 86public:
6f925ba9 87 DecodeTrace(pv::Session &session, shared_ptr<data::SignalBase> signalbase,
6e89374a 88 int index);
55d3603d 89
ab185f78
SA
90 ~DecodeTrace();
91
55d3603d
JH
92 bool enabled() const;
93
6f925ba9 94 shared_ptr<data::SignalBase> base() const;
bb7dd726 95
a5d93c27
JH
96 /**
97 * Computes the vertical extents of the contents of this row item.
98 * @return A pair containing the minimum and maximum y-values.
99 */
6f925ba9 100 pair<int, int> v_extents() const;
a5d93c27 101
55d3603d 102 /**
fe08b6e8
JH
103 * Paints the background layer of the trace with a QPainter
104 * @param p the QPainter to paint into.
3eb29afd 105 * @param pp the painting parameters object to paint with..
223d0c37 106 */
60938e04 107 void paint_back(QPainter &p, ViewItemPaintParams &pp);
fe08b6e8
JH
108
109 /**
110 * Paints the mid-layer of the trace with a QPainter
55d3603d 111 * @param p the QPainter to paint into.
3eb29afd 112 * @param pp the painting parameters object to paint with.
223d0c37 113 */
60938e04 114 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
55d3603d 115
88908838
JH
116 /**
117 * Paints the foreground layer of the trace with a QPainter
118 * @param p the QPainter to paint into.
3eb29afd 119 * @param pp the painting parameters object to paint with.
223d0c37 120 */
60938e04 121 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
88908838 122
4e5a4405
JH
123 void populate_popup_form(QWidget *parent, QFormLayout *form);
124
9e773fec 125 QMenu* create_header_context_menu(QWidget *parent);
c51482b3 126
be843692
SA
127 virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
128
5ed1adf5
JH
129 void delete_pressed();
130
ad50ac1a 131private:
6f925ba9 132 void draw_annotations(vector<pv::data::decode::Annotation> annotations,
50631798 133 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 134 QColor row_color, int row_title_width);
50631798 135
06e810f2 136 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
520362f8 137 int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 138 QColor row_color, int row_title_width) const;
06e810f2 139
5c48ce32 140 void draw_annotation_block(qreal start, qreal end,
20d90d22 141 pv::data::decode::Annotation::Class ann_class, bool use_ann_format,
9ba13f5e 142 QPainter &p, int h, int y, QColor row_color) const;
50631798 143
06e810f2 144 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 145 int h, qreal x, int y) const;
06e810f2
JH
146
147 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 148 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
aee9dcf3 149 int row_title_width) const;
06e810f2 150
ad50ac1a 151 void draw_error(QPainter &p, const QString &message,
5b5fa4da 152 const ViewItemPaintParams &pp);
ad50ac1a 153
5dfeb70f 154 void draw_unresolved_period(QPainter &p, int h, int left,
7f8517f6
SA
155 int right) const;
156
6f925ba9 157 pair<double, double> get_pixels_offset_samples_per_pixel() const;
7f8517f6
SA
158
159 /**
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.
165 */
67fb15bf 166 pair<uint64_t, uint64_t> get_view_sample_range(int x_start, int x_end) const;
5dfeb70f 167
9ba13f5e
SA
168 QColor get_row_color(int row_index) const;
169 QColor get_annotation_color(QColor row_color, int annotation_index) const;
170
117cdea3 171 int get_row_at_point(const QPoint &point);
e2f90c50 172
117cdea3 173 const QString get_annotation_at_point(const QPoint &point);
e2f90c50 174
cf0a3c9c
SA
175 void update_stack_button();
176
613d097c 177 void create_decoder_form(int index,
6f925ba9 178 shared_ptr<pv::data::decode::Decoder> &dec,
7491a29f
JH
179 QWidget *parent, QFormLayout *form);
180
6ac6242b 181 QComboBox* create_channel_selector(QWidget *parent,
a82325d1 182 const data::decode::DecodeChannel *ch);
9f97b357 183 QComboBox* create_channel_selector_init_state(QWidget *parent,
a82325d1 184 const data::decode::DecodeChannel *ch);
4e5a4405 185
5a914348
SA
186 void export_annotations(vector<data::decode::Annotation> *annotations) const;
187
33c62f44 188public:
0cbadf1c 189 virtual void hover_point_changed(const QPoint &hp);
33c62f44 190
e9213170 191private Q_SLOTS:
ab185f78
SA
192 void on_setting_changed(const QString &key, const QVariant &value);
193
ad908057 194 void on_new_annotations();
5b6ae103 195 void on_delayed_trace_update();
eee3eab9 196 void on_decode_reset();
1b56c646 197 void on_decode_finished();
556259d2 198 void on_pause_decode();
9cef9567 199
c51482b3
JH
200 void on_delete();
201
6ac6242b 202 void on_channel_selected(int);
4e5a4405 203
9f97b357
SA
204 void on_channels_updated();
205
206 void on_init_state_changed(int);
407c9ebe 207
7491a29f
JH
208 void on_stack_decoder(srd_decoder *decoder);
209
613d097c
JH
210 void on_delete_decoder(int index);
211
dd048a7e
JH
212 void on_show_hide_decoder(int index);
213
c764c995
SA
214 void on_copy_annotation_to_clipboard();
215
be843692 216 void on_export_row();
5a914348 217 void on_export_all_rows();
99ba5f28
SA
218 void on_export_row_with_cursor();
219 void on_export_all_rows_with_cursor();
be843692 220 void on_export_row_from_here();
5a914348 221 void on_export_all_rows_from_here();
be843692 222
55d3603d 223private:
2b81ae46 224 pv::Session &session_;
ad908057 225 shared_ptr<data::DecodeSignal> decode_signal_;
e0fc5810 226
6f925ba9 227 vector<data::decode::Row> visible_rows_;
ab185f78 228 bool always_show_all_rows_;
4e5a4405 229
9f97b357
SA
230 map<QComboBox*, uint16_t> channel_id_map_; // channel selector -> decode channel ID
231 map<QComboBox*, uint16_t> init_state_map_; // init state selector -> decode channel ID
6f925ba9 232 list< shared_ptr<pv::binding::Decoder> > bindings_;
4e5a4405 233
be843692 234 data::decode::Row *selected_row_;
99ba5f28 235 pair<uint64_t, uint64_t> selected_sample_range_;
be843692 236
6f925ba9 237 vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
cf0a3c9c 238 QPushButton* stack_button_;
613d097c 239
6f925ba9 240 map<data::decode::Row, int> row_title_widths_;
eee89ff8 241 int row_height_, max_visible_rows_;
88908838 242
752281db
SA
243 int min_useful_label_width_;
244
8dbbc7f0 245 QSignalMapper delete_mapper_, show_hide_mapper_;
5b6ae103
SA
246
247 QTimer delayed_trace_updater_;
55d3603d
JH
248};
249
1573bf16 250} // namespace trace
f4e57597 251} // namespace views
55d3603d
JH
252} // namespace pv
253
f4e57597 254#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP