]> sigrok.org Git - pulseview.git/blame - pv/view/decodetrace.hpp
Fix #771 by using black with alpha instead of an opaque grey
[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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEW_DECODETRACE_HPP
22#define PULSEVIEW_PV_VIEW_DECODETRACE_HPP
55d3603d 23
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
613d097c
JH
31#include <QSignalMapper>
32
3cc9ad7b 33#include <pv/binding/decoder.hpp>
2acdb232 34#include <pv/data/decode/row.hpp>
4e5a4405 35
8bd26d8b 36struct srd_channel;
e563a7c0 37struct srd_decoder;
4e5a4405
JH
38
39class QComboBox;
40
55d3603d 41namespace pv {
119aff65 42
2b81ae46 43class Session;
83c23cc9 44
119aff65 45namespace data {
6e89374a 46class DecoderStack;
7491a29f
JH
47
48namespace decode {
06e810f2 49class Annotation;
7491a29f 50class Decoder;
287d607f 51class Row;
7491a29f 52}
119aff65
JH
53}
54
dd048a7e
JH
55namespace widgets {
56class DecoderGroupBox;
57}
58
55d3603d
JH
59namespace view {
60
b9329558 61class DecodeTrace : public Trace
55d3603d 62{
e0fc5810
JH
63 Q_OBJECT
64
7491a29f 65private:
6ac6242b 66 struct ChannelSelector
7491a29f 67 {
8dbbc7f0
JH
68 const QComboBox *combo_;
69 const std::shared_ptr<pv::data::decode::Decoder> decoder_;
70 const srd_channel *pdch_;
7491a29f
JH
71 };
72
06bb4e6a
JH
73private:
74 static const QColor DecodeColours[4];
ad50ac1a 75 static const QColor ErrorBgColour;
5dfeb70f 76 static const QColor NoDecodeColour;
06bb4e6a 77
88908838 78 static const int ArrowSize;
06e810f2 79 static const double EndCapWidth;
aee9dcf3 80 static const int RowTitleMargin;
06e810f2
JH
81 static const int DrawPadding;
82
287d607f
JH
83 static const QColor Colours[16];
84 static const QColor OutlineColours[16];
06e810f2 85
55d3603d 86public:
2b81ae46 87 DecodeTrace(pv::Session &session,
f9abf97e 88 std::shared_ptr<pv::data::DecoderStack> decoder_stack,
6e89374a 89 int index);
55d3603d
JH
90
91 bool enabled() const;
92
f9abf97e 93 const std::shared_ptr<pv::data::DecoderStack>& decoder() const;
b6b267bb 94
a5d93c27
JH
95 /**
96 * Computes the vertical extents of the contents of this row item.
97 * @return A pair containing the minimum and maximum y-values.
98 */
99 std::pair<int, int> v_extents() const;
100
55d3603d 101 /**
fe08b6e8
JH
102 * Paints the background layer of the trace with a QPainter
103 * @param p the QPainter to paint into.
3eb29afd 104 * @param pp the painting parameters object to paint with..
223d0c37 105 */
5b5fa4da 106 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
fe08b6e8
JH
107
108 /**
109 * Paints the mid-layer of the trace with a QPainter
55d3603d 110 * @param p the QPainter to paint into.
3eb29afd 111 * @param pp the painting parameters object to paint with.
223d0c37 112 */
5b5fa4da 113 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
55d3603d 114
88908838
JH
115 /**
116 * Paints the foreground layer of the trace with a QPainter
117 * @param p the QPainter to paint into.
3eb29afd 118 * @param pp the painting parameters object to paint with.
223d0c37 119 */
5b5fa4da 120 void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
88908838 121
4e5a4405
JH
122 void populate_popup_form(QWidget *parent, QFormLayout *form);
123
c51482b3
JH
124 QMenu* create_context_menu(QWidget *parent);
125
5ed1adf5
JH
126 void delete_pressed();
127
ad50ac1a 128private:
50631798
SA
129 void draw_annotations(std::vector<pv::data::decode::Annotation> annotations,
130 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
aee9dcf3 131 size_t base_colour, int row_title_width);
50631798 132
06e810f2 133 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
520362f8 134 int h, const ViewItemPaintParams &pp, int y,
aee9dcf3 135 size_t base_colour, int row_title_width) const;
06e810f2 136
520362f8 137 void draw_annotation_block(std::vector<pv::data::decode::Annotation> annotations,
33707990 138 QPainter &p, int h, int y, size_t base_colour) const;
50631798 139
06e810f2 140 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
f765c3db 141 int h, double x, int y) const;
06e810f2
JH
142
143 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
f765c3db 144 int h, double start, double end, int y, const ViewItemPaintParams &pp,
aee9dcf3 145 int row_title_width) const;
06e810f2 146
ad50ac1a 147 void draw_error(QPainter &p, const QString &message,
5b5fa4da 148 const ViewItemPaintParams &pp);
ad50ac1a 149
5dfeb70f 150 void draw_unresolved_period(QPainter &p, int h, int left,
7f8517f6
SA
151 int right) const;
152
53e35b2d 153 std::pair<double, double> get_pixels_offset_samples_per_pixel() const;
7f8517f6
SA
154
155 /**
156 * Determines the start and end sample for a given pixel range.
157 * @param x_start the X coordinate of the start sample in the view
158 * @param x_end the X coordinate of the end sample in the view
159 * @return Returns a pair containing the start sample and the end
160 * sample that correspond to the start and end coordinates.
161 */
162 std::pair<uint64_t, uint64_t> get_sample_range(int x_start, int x_end) const;
5dfeb70f 163
117cdea3 164 int get_row_at_point(const QPoint &point);
e2f90c50 165
117cdea3 166 const QString get_annotation_at_point(const QPoint &point);
e2f90c50 167
613d097c 168 void create_decoder_form(int index,
f9abf97e 169 std::shared_ptr<pv::data::decode::Decoder> &dec,
7491a29f
JH
170 QWidget *parent, QFormLayout *form);
171
6ac6242b 172 QComboBox* create_channel_selector(QWidget *parent,
f9abf97e 173 const std::shared_ptr<pv::data::decode::Decoder> &dec,
8bd26d8b 174 const srd_channel *const pdch);
7491a29f 175
6ac6242b 176 void commit_decoder_channels(
f9abf97e 177 std::shared_ptr<data::decode::Decoder> &dec);
4e5a4405 178
6ac6242b 179 void commit_channels();
4e5a4405 180
33c62f44
JH
181public:
182 void hover_point_changed();
183
e9213170 184private Q_SLOTS:
9cef9567
JH
185 void on_new_decode_data();
186
c51482b3
JH
187 void on_delete();
188
6ac6242b 189 void on_channel_selected(int);
4e5a4405 190
7491a29f
JH
191 void on_stack_decoder(srd_decoder *decoder);
192
613d097c
JH
193 void on_delete_decoder(int index);
194
dd048a7e
JH
195 void on_show_hide_decoder(int index);
196
55d3603d 197private:
2b81ae46 198 pv::Session &session_;
8dbbc7f0 199 std::shared_ptr<pv::data::DecoderStack> decoder_stack_;
e0fc5810 200
8dbbc7f0 201 uint64_t decode_start_, decode_end_;
4e5a4405 202
3cc9ad7b 203 std::list< std::shared_ptr<pv::binding::Decoder> >
8dbbc7f0 204 bindings_;
4e5a4405 205
8dbbc7f0
JH
206 std::list<ChannelSelector> channel_selectors_;
207 std::vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
613d097c 208
8dbbc7f0 209 std::vector<data::decode::Row> visible_rows_;
aee9dcf3 210 std::map<data::decode::Row, int> row_title_widths_;
eee89ff8 211 int row_height_, max_visible_rows_;
88908838 212
752281db
SA
213 int min_useful_label_width_;
214
8dbbc7f0 215 QSignalMapper delete_mapper_, show_hide_mapper_;
55d3603d
JH
216};
217
218} // namespace view
219} // namespace pv
220
7a01bd36 221#endif // PULSEVIEW_PV_VIEW_DECODETRACE_HPP