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