]> sigrok.org Git - pulseview.git/blame - pv/view/decodetrace.hpp
Snapshot: Renamed to Segment
[pulseview.git] / pv / view / 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
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 23
2acdb232 24#include "trace.hpp"
55d3603d 25
7491a29f 26#include <list>
4e5a4405 27#include <map>
f9abf97e 28#include <memory>
4e5a4405 29
613d097c
JH
30#include <QSignalMapper>
31
2acdb232
JH
32#include <pv/prop/binding/decoderoptions.hpp>
33#include <pv/data/decode/row.hpp>
4e5a4405 34
8bd26d8b 35struct srd_channel;
e563a7c0 36struct srd_decoder;
4e5a4405
JH
37
38class QComboBox;
39
55d3603d 40namespace pv {
119aff65 41
2b81ae46 42class Session;
83c23cc9 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 66 {
8dbbc7f0
JH
67 const QComboBox *combo_;
68 const std::shared_ptr<pv::data::decode::Decoder> decoder_;
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:
2b81ae46 85 DecodeTrace(pv::Session &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
a5d93c27
JH
93 /**
94 * Computes the vertical extents of the contents of this row item.
95 * @return A pair containing the minimum and maximum y-values.
96 */
97 std::pair<int, int> v_extents() const;
98
55d3603d 99 /**
fe08b6e8
JH
100 * Paints the background layer of the trace with a QPainter
101 * @param p the QPainter to paint into.
3eb29afd 102 * @param pp the painting parameters object to paint with..
fe08b6e8 103 **/
3eb29afd 104 void paint_back(QPainter &p, const RowItemPaintParams &pp);
fe08b6e8
JH
105
106 /**
107 * Paints the mid-layer of the trace with a QPainter
55d3603d 108 * @param p the QPainter to paint into.
3eb29afd 109 * @param pp the painting parameters object to paint with.
55d3603d 110 **/
3eb29afd 111 void paint_mid(QPainter &p, const RowItemPaintParams &pp);
55d3603d 112
88908838
JH
113 /**
114 * Paints the foreground layer of the trace with a QPainter
115 * @param p the QPainter to paint into.
3eb29afd 116 * @param pp the painting parameters object to paint with.
88908838 117 **/
3eb29afd 118 void paint_fore(QPainter &p, const RowItemPaintParams &pp);
88908838 119
4e5a4405
JH
120 void populate_popup_form(QWidget *parent, QFormLayout *form);
121
c51482b3
JH
122 QMenu* create_context_menu(QWidget *parent);
123
5ed1adf5
JH
124 void delete_pressed();
125
ad50ac1a 126private:
06e810f2 127 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
3eb29afd 128 QColor text_colour, int text_height, const RowItemPaintParams &pp, int y,
287d607f 129 size_t base_colour) const;
06e810f2
JH
130
131 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
132 QColor fill, QColor outline, QColor text_color, int h, double x,
133 int y) const;
134
135 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
136 QColor fill, QColor outline, QColor text_color, int h, double start,
137 double end, int y) const;
138
ad50ac1a 139 void draw_error(QPainter &p, const QString &message,
3eb29afd 140 const RowItemPaintParams &pp);
ad50ac1a 141
5dfeb70f 142 void draw_unresolved_period(QPainter &p, int h, int left,
7f8517f6
SA
143 int right) const;
144
53e35b2d 145 std::pair<double, double> get_pixels_offset_samples_per_pixel() const;
7f8517f6
SA
146
147 /**
148 * Determines the start and end sample for a given pixel range.
149 * @param x_start the X coordinate of the start sample in the view
150 * @param x_end the X coordinate of the end sample in the view
151 * @return Returns a pair containing the start sample and the end
152 * sample that correspond to the start and end coordinates.
153 */
154 std::pair<uint64_t, uint64_t> get_sample_range(int x_start, int x_end) const;
5dfeb70f 155
117cdea3 156 int get_row_at_point(const QPoint &point);
e2f90c50 157
117cdea3 158 const QString get_annotation_at_point(const QPoint &point);
e2f90c50
SA
159
160 void hide_hover_annotation();
161
613d097c 162 void create_decoder_form(int index,
f9abf97e 163 std::shared_ptr<pv::data::decode::Decoder> &dec,
7491a29f
JH
164 QWidget *parent, QFormLayout *form);
165
6ac6242b 166 QComboBox* create_channel_selector(QWidget *parent,
f9abf97e 167 const std::shared_ptr<pv::data::decode::Decoder> &dec,
8bd26d8b 168 const srd_channel *const pdch);
7491a29f 169
6ac6242b 170 void commit_decoder_channels(
f9abf97e 171 std::shared_ptr<data::decode::Decoder> &dec);
4e5a4405 172
6ac6242b 173 void commit_channels();
4e5a4405 174
33c62f44
JH
175public:
176 void hover_point_changed();
177
e9213170 178private Q_SLOTS:
9cef9567
JH
179 void on_new_decode_data();
180
c51482b3
JH
181 void on_delete();
182
6ac6242b 183 void on_channel_selected(int);
4e5a4405 184
7491a29f
JH
185 void on_stack_decoder(srd_decoder *decoder);
186
613d097c
JH
187 void on_delete_decoder(int index);
188
dd048a7e
JH
189 void on_show_hide_decoder(int index);
190
55d3603d 191private:
2b81ae46 192 pv::Session &session_;
8dbbc7f0 193 std::shared_ptr<pv::data::DecoderStack> decoder_stack_;
e0fc5810 194
8dbbc7f0 195 uint64_t decode_start_, decode_end_;
4e5a4405 196
f9abf97e 197 std::list< std::shared_ptr<pv::prop::binding::DecoderOptions> >
8dbbc7f0 198 bindings_;
4e5a4405 199
8dbbc7f0
JH
200 std::list<ChannelSelector> channel_selectors_;
201 std::vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
613d097c 202
8dbbc7f0
JH
203 std::vector<data::decode::Row> visible_rows_;
204 int text_height_, row_height_;
88908838 205
8dbbc7f0 206 QSignalMapper delete_mapper_, show_hide_mapper_;
55d3603d
JH
207};
208
209} // namespace view
210} // namespace pv
211
b9329558 212#endif // PULSEVIEW_PV_VIEW_DECODETRACE_H