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