]> sigrok.org Git - pulseview.git/blame - pv/views/trace/decodetrace.hpp
TraceView: Fix still-highlighted trace after closing popup
[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
5a9146ac 23#include <config.h>
2acdb232 24#include "trace.hpp"
55d3603d 25
7491a29f 26#include <list>
4e5a4405 27#include <map>
f9abf97e 28#include <memory>
50631798 29#include <vector>
4e5a4405 30
9ba13f5e 31#include <QColor>
c6b4e925 32#include <QCheckBox>
5a9146ac 33#include <QElapsedTimer>
74bf6666 34#include <QPolygon>
cf0a3c9c 35#include <QPushButton>
613d097c 36#include <QSignalMapper>
5b6ae103 37#include <QTimer>
613d097c 38
3cc9ad7b 39#include <pv/binding/decoder.hpp>
a82325d1 40#include <pv/data/decode/decoder.hpp>
20d90d22 41#include <pv/data/decode/annotation.hpp>
2acdb232 42#include <pv/data/decode/row.hpp>
aca9aa83 43#include <pv/data/signalbase.hpp>
4e5a4405 44
5a9146ac
SA
45#define DECODETRACE_SHOW_RENDER_TIME 0
46
84002113 47using std::deque;
6f925ba9
UH
48using std::list;
49using std::map;
84002113 50using std::mutex;
6f925ba9
UH
51using std::pair;
52using std::shared_ptr;
53using std::vector;
54
5a9146ac
SA
55using pv::data::SignalBase;
56using pv::data::decode::Annotation;
57using pv::data::decode::Decoder;
6a26fc44
SA
58using pv::data::decode::Row;
59
8bd26d8b 60struct srd_channel;
e563a7c0 61struct srd_decoder;
4e5a4405 62
55d3603d 63namespace pv {
119aff65 64
2b81ae46 65class Session;
83c23cc9 66
119aff65 67namespace data {
9f97b357 68struct DecodeChannel;
ad908057 69class DecodeSignal;
7491a29f
JH
70
71namespace decode {
72class Decoder;
6a26fc44 73class Row;
7491a29f 74}
20f59e95 75} // namespace data
119aff65 76
dd048a7e
JH
77namespace widgets {
78class DecoderGroupBox;
79}
80
f4e57597 81namespace views {
1573bf16 82namespace trace {
55d3603d 83
adf9e022
SA
84class ContainerWidget;
85
6a26fc44 86struct DecodeTraceRow {
84002113
SA
87 // When adding a field, make sure it's initialized properly in
88 // DecodeTrace::update_rows()
89
6a26fc44 90 Row* decode_row;
74bf6666 91 unsigned int height, expanded_height, title_width, animation_step;
81dc0221 92 bool exists, currently_visible, has_hidden_classes;
74bf6666
SA
93 bool expand_marker_highlighted, expanding, expanded, collapsing;
94 QPolygon expand_marker_shape;
95 float anim_height, anim_shape;
dca3cbee 96
adf9e022 97 ContainerWidget* container;
c6b4e925
SA
98 QWidget* header_container;
99 QWidget* selector_container;
100 vector<QCheckBox*> selectors;
bdb97140
SA
101
102 QColor row_color;
103 map<uint32_t, QColor> ann_class_color;
462941e2 104 map<uint32_t, QColor> ann_class_dark_color;
84002113
SA
105};
106
adf9e022
SA
107class ContainerWidget : public QWidget
108{
109 Q_OBJECT
110
111public:
112 ContainerWidget(QWidget *parent = nullptr);
113
114 virtual void resizeEvent(QResizeEvent* event);
115
116Q_SIGNALS:
117 void widgetResized(QWidget* sender);
118};
119
b9329558 120class DecodeTrace : public Trace
55d3603d 121{
e0fc5810
JH
122 Q_OBJECT
123
06bb4e6a 124private:
641574bc
SA
125 static const QColor ErrorBgColor;
126 static const QColor NoDecodeColor;
81dc0221 127 static const QColor ExpandMarkerWarnColor;
c6b4e925
SA
128 static const uint8_t ExpansionAreaHeaderAlpha;
129 static const uint8_t ExpansionAreaAlpha;
06bb4e6a 130
88908838 131 static const int ArrowSize;
06e810f2 132 static const double EndCapWidth;
aee9dcf3 133 static const int RowTitleMargin;
06e810f2
JH
134 static const int DrawPadding;
135
5b6ae103 136 static const int MaxTraceUpdateRate;
74bf6666 137 static const unsigned int AnimationDurationInTicks;
5b6ae103 138
55d3603d 139public:
5a9146ac 140 DecodeTrace(pv::Session &session, shared_ptr<SignalBase> signalbase,
6e89374a 141 int index);
55d3603d 142
ab185f78
SA
143 ~DecodeTrace();
144
55d3603d
JH
145 bool enabled() const;
146
5a9146ac 147 shared_ptr<SignalBase> base() const;
bb7dd726 148
a5d93c27
JH
149 /**
150 * Computes the vertical extents of the contents of this row item.
151 * @return A pair containing the minimum and maximum y-values.
152 */
6f925ba9 153 pair<int, int> v_extents() const;
a5d93c27 154
55d3603d 155 /**
fe08b6e8
JH
156 * Paints the background layer of the trace with a QPainter
157 * @param p the QPainter to paint into.
3eb29afd 158 * @param pp the painting parameters object to paint with..
223d0c37 159 */
60938e04 160 void paint_back(QPainter &p, ViewItemPaintParams &pp);
fe08b6e8
JH
161
162 /**
163 * Paints the mid-layer of the trace with a QPainter
55d3603d 164 * @param p the QPainter to paint into.
3eb29afd 165 * @param pp the painting parameters object to paint with.
223d0c37 166 */
60938e04 167 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
55d3603d 168
88908838
JH
169 /**
170 * Paints the foreground layer of the trace with a QPainter
171 * @param p the QPainter to paint into.
3eb29afd 172 * @param pp the painting parameters object to paint with.
223d0c37 173 */
60938e04 174 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
88908838 175
4e5a4405
JH
176 void populate_popup_form(QWidget *parent, QFormLayout *form);
177
9e773fec 178 QMenu* create_header_context_menu(QWidget *parent);
c51482b3 179
be843692
SA
180 virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
181
74bf6666
SA
182 virtual void delete_pressed();
183
184 virtual void hover_point_changed(const QPoint &hp);
185
186 virtual void mouse_left_press_event(const QMouseEvent* event);
5ed1adf5 187
ad50ac1a 188private:
462941e2 189 void draw_annotations(deque<const Annotation*>& annotations, QPainter &p,
bdb97140 190 const ViewItemPaintParams &pp, int y, const DecodeTraceRow& row);
50631798 191
bdb97140
SA
192 void draw_annotation(const Annotation* a, QPainter &p,
193 const ViewItemPaintParams &pp, int y, const DecodeTraceRow& row) const;
06e810f2 194
5a9146ac 195 void draw_annotation_block(qreal start, qreal end, Annotation::Class ann_class,
bdb97140 196 bool use_ann_format, QPainter &p, int y, const DecodeTraceRow& row) const;
50631798 197
bdb97140 198 void draw_instant(const Annotation* a, QPainter &p, qreal x, int y) const;
06e810f2 199
bdb97140 200 void draw_range(const Annotation* a, QPainter &p, qreal start, qreal end,
5a9146ac 201 int y, const ViewItemPaintParams &pp, int row_title_width) const;
06e810f2 202
5a9146ac 203 void draw_error(QPainter &p, const QString &message, const ViewItemPaintParams &pp);
ad50ac1a 204
bdb97140 205 void draw_unresolved_period(QPainter &p, int left, int right) const;
7f8517f6 206
6f925ba9 207 pair<double, double> get_pixels_offset_samples_per_pixel() const;
7f8517f6
SA
208
209 /**
210 * Determines the start and end sample for a given pixel range.
211 * @param x_start the X coordinate of the start sample in the view
212 * @param x_end the X coordinate of the end sample in the view
213 * @return Returns a pair containing the start sample and the end
214 * sample that correspond to the start and end coordinates.
215 */
67fb15bf 216 pair<uint64_t, uint64_t> get_view_sample_range(int x_start, int x_end) const;
5dfeb70f 217
9ba13f5e
SA
218 QColor get_row_color(int row_index) const;
219 QColor get_annotation_color(QColor row_color, int annotation_index) const;
220
6a26fc44 221 unsigned int get_row_y(const DecodeTraceRow* row) const;
84002113 222
6a26fc44 223 DecodeTraceRow* get_row_at_point(const QPoint &point);
e2f90c50 224
117cdea3 225 const QString get_annotation_at_point(const QPoint &point);
e2f90c50 226
cf0a3c9c
SA
227 void update_stack_button();
228
5a9146ac 229 void create_decoder_form(int index, shared_ptr<Decoder> &dec,
7491a29f
JH
230 QWidget *parent, QFormLayout *form);
231
6ac6242b 232 QComboBox* create_channel_selector(QWidget *parent,
a82325d1 233 const data::decode::DecodeChannel *ch);
9f97b357 234 QComboBox* create_channel_selector_init_state(QWidget *parent,
a82325d1 235 const data::decode::DecodeChannel *ch);
4e5a4405 236
462941e2 237 void export_annotations(deque<const Annotation*>& annotations) const;
5a914348 238
6a26fc44 239 void initialize_row_widgets(DecodeTraceRow* r, unsigned int row_id);
84002113
SA
240 void update_rows();
241
c6b4e925
SA
242 /**
243 * Sets row r to expanded state without forcing an update of the view
244 */
6a26fc44 245 void set_row_expanded(DecodeTraceRow* r);
c6b4e925
SA
246
247 /**
248 * Sets row r to collapsed state without forcing an update of the view
249 */
6a26fc44 250 void set_row_collapsed(DecodeTraceRow* r);
c6b4e925
SA
251
252 void update_expanded_rows();
253
e9213170 254private Q_SLOTS:
ab185f78
SA
255 void on_setting_changed(const QString &key, const QVariant &value);
256
ad908057 257 void on_new_annotations();
5b6ae103 258 void on_delayed_trace_update();
eee3eab9 259 void on_decode_reset();
1b56c646 260 void on_decode_finished();
556259d2 261 void on_pause_decode();
9cef9567 262
c51482b3
JH
263 void on_delete();
264
6ac6242b 265 void on_channel_selected(int);
4e5a4405 266
9f97b357
SA
267 void on_channels_updated();
268
269 void on_init_state_changed(int);
407c9ebe 270
7491a29f
JH
271 void on_stack_decoder(srd_decoder *decoder);
272
613d097c
JH
273 void on_delete_decoder(int index);
274
dd048a7e 275 void on_show_hide_decoder(int index);
6a26fc44
SA
276 void on_show_hide_row(int row_id);
277 void on_show_hide_class(QWidget* sender);
adf9e022 278 void on_row_container_resized(QWidget* sender);
dd048a7e 279
c764c995
SA
280 void on_copy_annotation_to_clipboard();
281
be843692 282 void on_export_row();
5a914348 283 void on_export_all_rows();
99ba5f28
SA
284 void on_export_row_with_cursor();
285 void on_export_all_rows_with_cursor();
be843692 286 void on_export_row_from_here();
5a914348 287 void on_export_all_rows_from_here();
be843692 288
74bf6666
SA
289 void on_animation_timer();
290
55d3603d 291private:
2b81ae46 292 pv::Session &session_;
ad908057 293 shared_ptr<data::DecodeSignal> decode_signal_;
e0fc5810 294
6a26fc44 295 deque<DecodeTraceRow> rows_;
84002113 296 mutable mutex row_modification_mutex_;
4e5a4405 297
9f97b357
SA
298 map<QComboBox*, uint16_t> channel_id_map_; // channel selector -> decode channel ID
299 map<QComboBox*, uint16_t> init_state_map_; // init state selector -> decode channel ID
6f925ba9 300 list< shared_ptr<pv::binding::Decoder> > bindings_;
4e5a4405 301
6a26fc44 302 const Row* selected_row_;
99ba5f28 303 pair<uint64_t, uint64_t> selected_sample_range_;
be843692 304
6f925ba9 305 vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
cf0a3c9c 306 QPushButton* stack_button_;
613d097c 307
9741d6e0
SA
308 unsigned int default_row_height_, annotation_height_;
309 unsigned int visible_rows_, max_visible_rows_;
88908838 310
752281db 311 int min_useful_label_width_;
84002113 312 bool always_show_all_rows_;
752281db 313
6a26fc44
SA
314 QSignalMapper delete_mapper_, show_hide_mapper_;
315 QSignalMapper row_show_hide_mapper_, class_show_hide_mapper_;
5b6ae103 316
74bf6666
SA
317 QTimer delayed_trace_updater_, animation_timer_;
318
319 QPolygon default_marker_shape_;
5a9146ac
SA
320
321#if DECODETRACE_SHOW_RENDER_TIME
322 QElapsedTimer render_time_;
323#endif
55d3603d
JH
324};
325
1573bf16 326} // namespace trace
f4e57597 327} // namespace views
55d3603d
JH
328} // namespace pv
329
f4e57597 330#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP