]> sigrok.org Git - pulseview.git/blame - pv/view/decodetrace.h
Header: Keep a shared_ptr of the clicked item
[pulseview.git] / pv / view / decodetrace.h
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
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
19 */
20
b9329558
JH
21#ifndef PULSEVIEW_PV_VIEW_DECODETRACE_H
22#define PULSEVIEW_PV_VIEW_DECODETRACE_H
55d3603d
JH
23
24#include "trace.h"
25
7491a29f 26#include <list>
4e5a4405 27#include <map>
f9abf97e 28#include <memory>
4e5a4405 29
613d097c
JH
30#include <QSignalMapper>
31
4e5a4405 32#include <pv/prop/binding/decoderoptions.h>
c294543f 33#include <pv/data/decode/row.h>
4e5a4405 34
8bd26d8b 35struct srd_channel;
e563a7c0 36struct srd_decoder;
4e5a4405
JH
37
38class QComboBox;
39
55d3603d 40namespace pv {
119aff65 41
83c23cc9
JH
42class SigSession;
43
119aff65 44namespace data {
6e89374a 45class DecoderStack;
7491a29f
JH
46
47namespace decode {
06e810f2 48class Annotation;
7491a29f 49class Decoder;
287d607f 50class Row;
7491a29f 51}
119aff65
JH
52}
53
dd048a7e
JH
54namespace widgets {
55class DecoderGroupBox;
56}
57
55d3603d
JH
58namespace view {
59
b9329558 60class DecodeTrace : public Trace
55d3603d 61{
e0fc5810
JH
62 Q_OBJECT
63
7491a29f 64private:
6ac6242b 65 struct ChannelSelector
7491a29f
JH
66 {
67 const QComboBox *_combo;
f9abf97e 68 const std::shared_ptr<pv::data::decode::Decoder> _decoder;
8bd26d8b 69 const srd_channel *_pdch;
7491a29f
JH
70 };
71
06bb4e6a
JH
72private:
73 static const QColor DecodeColours[4];
ad50ac1a 74 static const QColor ErrorBgColour;
5dfeb70f 75 static const QColor NoDecodeColour;
06bb4e6a 76
88908838 77 static const int ArrowSize;
06e810f2
JH
78 static const double EndCapWidth;
79 static const int DrawPadding;
80
287d607f
JH
81 static const QColor Colours[16];
82 static const QColor OutlineColours[16];
06e810f2 83
55d3603d 84public:
b9329558 85 DecodeTrace(pv::SigSession &session,
f9abf97e 86 std::shared_ptr<pv::data::DecoderStack> decoder_stack,
6e89374a 87 int index);
55d3603d
JH
88
89 bool enabled() const;
90
f9abf97e 91 const std::shared_ptr<pv::data::DecoderStack>& decoder() const;
b6b267bb 92
55d3603d 93 /**
fe08b6e8
JH
94 * Paints the background layer of the trace with a QPainter
95 * @param p the QPainter to paint into.
96 * @param left the x-coordinate of the left edge of the signal.
97 * @param right the x-coordinate of the right edge of the signal.
98 **/
99 void paint_back(QPainter &p, int left, int right);
100
101 /**
102 * Paints the mid-layer of the trace with a QPainter
55d3603d 103 * @param p the QPainter to paint into.
55d3603d
JH
104 * @param left the x-coordinate of the left edge of the signal
105 * @param right the x-coordinate of the right edge of the signal
55d3603d 106 **/
fe08b6e8 107 void paint_mid(QPainter &p, int left, int right);
55d3603d 108
88908838
JH
109 /**
110 * Paints the foreground layer of the trace with a QPainter
111 * @param p the QPainter to paint into.
112 * @param left the x-coordinate of the left edge of the signal
113 * @param right the x-coordinate of the right edge of the signal
114 **/
115 void paint_fore(QPainter &p, int left, int right);
116
4e5a4405
JH
117 void populate_popup_form(QWidget *parent, QFormLayout *form);
118
c51482b3
JH
119 QMenu* create_context_menu(QWidget *parent);
120
5ed1adf5
JH
121 void delete_pressed();
122
ad50ac1a 123private:
06e810f2 124 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
7f8517f6 125 QColor text_colour, int text_height, int left, int right, int y,
287d607f 126 size_t base_colour) const;
06e810f2
JH
127
128 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
129 QColor fill, QColor outline, QColor text_color, int h, double x,
130 int y) const;
131
132 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
133 QColor fill, QColor outline, QColor text_color, int h, double start,
134 double end, int y) const;
135
ad50ac1a
JH
136 void draw_error(QPainter &p, const QString &message,
137 int left, int right);
138
5dfeb70f 139 void draw_unresolved_period(QPainter &p, int h, int left,
7f8517f6
SA
140 int right) const;
141
53e35b2d 142 std::pair<double, double> get_pixels_offset_samples_per_pixel() const;
7f8517f6
SA
143
144 /**
145 * Determines the start and end sample for a given pixel range.
146 * @param x_start the X coordinate of the start sample in the view
147 * @param x_end the X coordinate of the end sample in the view
148 * @return Returns a pair containing the start sample and the end
149 * sample that correspond to the start and end coordinates.
150 */
151 std::pair<uint64_t, uint64_t> get_sample_range(int x_start, int x_end) const;
5dfeb70f 152
117cdea3 153 int get_row_at_point(const QPoint &point);
e2f90c50 154
117cdea3 155 const QString get_annotation_at_point(const QPoint &point);
e2f90c50
SA
156
157 void hide_hover_annotation();
158
613d097c 159 void create_decoder_form(int index,
f9abf97e 160 std::shared_ptr<pv::data::decode::Decoder> &dec,
7491a29f
JH
161 QWidget *parent, QFormLayout *form);
162
6ac6242b 163 QComboBox* create_channel_selector(QWidget *parent,
f9abf97e 164 const std::shared_ptr<pv::data::decode::Decoder> &dec,
8bd26d8b 165 const srd_channel *const pdch);
7491a29f 166
6ac6242b 167 void commit_decoder_channels(
f9abf97e 168 std::shared_ptr<data::decode::Decoder> &dec);
4e5a4405 169
6ac6242b 170 void commit_channels();
4e5a4405 171
33c62f44
JH
172public:
173 void hover_point_changed();
174
e9213170 175private Q_SLOTS:
9cef9567
JH
176 void on_new_decode_data();
177
c51482b3
JH
178 void on_delete();
179
6ac6242b 180 void on_channel_selected(int);
4e5a4405 181
7491a29f
JH
182 void on_stack_decoder(srd_decoder *decoder);
183
613d097c
JH
184 void on_delete_decoder(int index);
185
dd048a7e
JH
186 void on_show_hide_decoder(int index);
187
55d3603d 188private:
83c23cc9 189 pv::SigSession &_session;
f9abf97e 190 std::shared_ptr<pv::data::DecoderStack> _decoder_stack;
e0fc5810
JH
191
192 uint64_t _decode_start, _decode_end;
4e5a4405 193
f9abf97e 194 std::list< std::shared_ptr<pv::prop::binding::DecoderOptions> >
7491a29f 195 _bindings;
4e5a4405 196
6ac6242b 197 std::list<ChannelSelector> _channel_selectors;
dd048a7e 198 std::vector<pv::widgets::DecoderGroupBox*> _decoder_forms;
613d097c 199
c294543f 200 std::vector<data::decode::Row> _visible_rows;
ef40ad83 201 int _text_height, _row_height;
88908838 202
dd048a7e 203 QSignalMapper _delete_mapper, _show_hide_mapper;
55d3603d
JH
204};
205
206} // namespace view
207} // namespace pv
208
b9329558 209#endif // PULSEVIEW_PV_VIEW_DECODETRACE_H