]> sigrok.org Git - pulseview.git/blob - pv/view/decodetrace.hpp
954ac90ca420e84c8bd596a95607fbaf960995c9
[pulseview.git] / pv / view / decodetrace.hpp
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
21 #ifndef PULSEVIEW_PV_VIEW_DECODETRACE_HPP
22 #define PULSEVIEW_PV_VIEW_DECODETRACE_HPP
23
24 #include "trace.hpp"
25
26 #include <list>
27 #include <map>
28 #include <memory>
29 #include <vector>
30
31 #include <QSignalMapper>
32
33 #include <pv/binding/decoder.hpp>
34 #include <pv/data/decode/row.hpp>
35
36 struct srd_channel;
37 struct srd_decoder;
38
39 class QComboBox;
40
41 namespace pv {
42
43 class Session;
44
45 namespace data {
46 class DecoderStack;
47
48 namespace decode {
49 class Annotation;
50 class Decoder;
51 class Row;
52 }
53 }
54
55 namespace widgets {
56 class DecoderGroupBox;
57 }
58
59 namespace view {
60
61 class DecodeTrace : public Trace
62 {
63         Q_OBJECT
64
65 private:
66         struct ChannelSelector
67         {
68                 const QComboBox *combo_;
69                 const std::shared_ptr<pv::data::decode::Decoder> decoder_;
70                 const srd_channel *pdch_;
71         };
72
73 private:
74         static const QColor DecodeColours[4];
75         static const QColor ErrorBgColour;
76         static const QColor NoDecodeColour;
77
78         static const int ArrowSize;
79         static const double EndCapWidth;
80         static const int DrawPadding;
81
82         static const QColor Colours[16];
83         static const QColor OutlineColours[16];
84
85 public:
86         DecodeTrace(pv::Session &session,
87                 std::shared_ptr<pv::data::DecoderStack> decoder_stack,
88                 int index);
89
90         bool enabled() const;
91
92         const std::shared_ptr<pv::data::DecoderStack>& decoder() const;
93
94         /**
95          * Computes the vertical extents of the contents of this row item.
96          * @return A pair containing the minimum and maximum y-values.
97          */
98         std::pair<int, int> v_extents() const;
99
100         /**
101          * Paints the background layer of the trace with a QPainter
102          * @param p the QPainter to paint into.
103          * @param pp the painting parameters object to paint with..
104          */
105         void paint_back(QPainter &p, const ViewItemPaintParams &pp);
106
107         /**
108          * Paints the mid-layer of the trace with a QPainter
109          * @param p the QPainter to paint into.
110          * @param pp the painting parameters object to paint with.
111          */
112         void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
113
114         /**
115          * Paints the foreground layer of the trace with a QPainter
116          * @param p the QPainter to paint into.
117          * @param pp the painting parameters object to paint with.
118          */
119         void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
120
121         void populate_popup_form(QWidget *parent, QFormLayout *form);
122
123         QMenu* create_context_menu(QWidget *parent);
124
125         void delete_pressed();
126
127 private:
128         void draw_annotations(std::vector<pv::data::decode::Annotation> annotations,
129                 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
130                 size_t base_colour);
131
132         void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
133                 int text_height, const ViewItemPaintParams &pp, int y,
134                 size_t base_colour) const;
135
136         void draw_annotation_block(std::vector<pv::data::decode::Annotation> a,
137                 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
138                 size_t base_colour) const;
139
140         void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
141                 QColor fill, QColor outline, int h, double x, int y) const;
142
143         void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
144                 QColor fill, QColor outline, int h, double start,
145                 double end, int y) const;
146
147         void draw_error(QPainter &p, const QString &message,
148                 const ViewItemPaintParams &pp);
149
150         void draw_unresolved_period(QPainter &p, int h, int left,
151                 int right) const;
152
153         std::pair<double, double> get_pixels_offset_samples_per_pixel() const;
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;
163
164         int get_row_at_point(const QPoint &point);
165
166         const QString get_annotation_at_point(const QPoint &point);
167
168         void create_decoder_form(int index,
169                 std::shared_ptr<pv::data::decode::Decoder> &dec,
170                 QWidget *parent, QFormLayout *form);
171
172         QComboBox* create_channel_selector(QWidget *parent,
173                 const std::shared_ptr<pv::data::decode::Decoder> &dec,
174                 const srd_channel *const pdch);
175
176         void commit_decoder_channels(
177                 std::shared_ptr<data::decode::Decoder> &dec);
178
179         void commit_channels();
180
181 public:
182         void hover_point_changed();
183
184 private Q_SLOTS:
185         void on_new_decode_data();
186
187         void on_delete();
188
189         void on_channel_selected(int);
190
191         void on_stack_decoder(srd_decoder *decoder);
192
193         void on_delete_decoder(int index);
194
195         void on_show_hide_decoder(int index);
196
197 private:
198         pv::Session &session_;
199         std::shared_ptr<pv::data::DecoderStack> decoder_stack_;
200
201         uint64_t decode_start_, decode_end_;
202
203         std::list< std::shared_ptr<pv::binding::Decoder> >
204                 bindings_;
205
206         std::list<ChannelSelector> channel_selectors_;
207         std::vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
208
209         std::vector<data::decode::Row> visible_rows_;
210         int row_height_;
211
212         QSignalMapper delete_mapper_, show_hide_mapper_;
213 };
214
215 } // namespace view
216 } // namespace pv
217
218 #endif // PULSEVIEW_PV_VIEW_DECODETRACE_HPP