]> sigrok.org Git - pulseview.git/blob - pv/views/trace/decodetrace.hpp
DecodeTrace: Add buttons to show/hide all classes in a row
[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 <config.h>
24 #include "trace.hpp"
25
26 #include <list>
27 #include <map>
28 #include <memory>
29 #include <vector>
30
31 #include <QColor>
32 #include <QCheckBox>
33 #include <QElapsedTimer>
34 #include <QPolygon>
35 #include <QPushButton>
36 #include <QSignalMapper>
37 #include <QTimer>
38
39 #include <pv/binding/decoder.hpp>
40 #include <pv/data/decode/decoder.hpp>
41 #include <pv/data/decode/annotation.hpp>
42 #include <pv/data/decode/row.hpp>
43 #include <pv/data/signalbase.hpp>
44
45 #define DECODETRACE_SHOW_RENDER_TIME 0
46
47 using std::deque;
48 using std::list;
49 using std::map;
50 using std::mutex;
51 using std::pair;
52 using std::shared_ptr;
53 using std::vector;
54
55 using pv::data::SignalBase;
56 using pv::data::decode::Annotation;
57 using pv::data::decode::Decoder;
58 using pv::data::decode::Row;
59
60 struct srd_channel;
61 struct srd_decoder;
62
63 namespace pv {
64
65 class Session;
66
67 namespace data {
68 struct DecodeChannel;
69 class DecodeSignal;
70
71 namespace decode {
72 class Decoder;
73 class Row;
74 }
75 }  // namespace data
76
77 namespace widgets {
78 class DecoderGroupBox;
79 }
80
81 namespace views {
82 namespace trace {
83
84 class ContainerWidget;
85
86 struct DecodeTraceRow {
87         // When adding a field, make sure it's initialized properly in
88         // DecodeTrace::update_rows()
89
90         Row* decode_row;
91         unsigned int height, expanded_height, title_width, animation_step;
92         bool exists, currently_visible, has_hidden_classes;
93         bool expand_marker_highlighted, expanding, expanded, collapsing;
94         QPolygon expand_marker_shape;
95         float anim_height, anim_shape;
96
97         ContainerWidget* container;
98         QWidget* header_container;
99         QWidget* selector_container;
100         vector<QCheckBox*> selectors;
101
102         QColor row_color;
103         map<uint32_t, QColor> ann_class_color;
104         map<uint32_t, QColor> ann_class_dark_color;
105 };
106
107 class ContainerWidget : public QWidget
108 {
109         Q_OBJECT
110
111 public:
112         ContainerWidget(QWidget *parent = nullptr);
113
114         virtual void resizeEvent(QResizeEvent* event);
115
116 Q_SIGNALS:
117         void widgetResized(QWidget* sender);
118 };
119
120 class DecodeTrace : public Trace
121 {
122         Q_OBJECT
123
124 private:
125         static const QColor ErrorBgColor;
126         static const QColor NoDecodeColor;
127         static const QColor ExpandMarkerWarnColor;
128         static const uint8_t ExpansionAreaHeaderAlpha;
129         static const uint8_t ExpansionAreaAlpha;
130
131         static const int ArrowSize;
132         static const double EndCapWidth;
133         static const int RowTitleMargin;
134         static const int DrawPadding;
135
136         static const int MaxTraceUpdateRate;
137         static const unsigned int AnimationDurationInTicks;
138
139 public:
140         DecodeTrace(pv::Session &session, shared_ptr<SignalBase> signalbase,
141                 int index);
142
143         ~DecodeTrace();
144
145         bool enabled() const;
146
147         shared_ptr<SignalBase> base() const;
148
149         /**
150          * Computes the vertical extents of the contents of this row item.
151          * @return A pair containing the minimum and maximum y-values.
152          */
153         pair<int, int> v_extents() const;
154
155         /**
156          * Paints the background layer of the trace with a QPainter
157          * @param p the QPainter to paint into.
158          * @param pp the painting parameters object to paint with..
159          */
160         void paint_back(QPainter &p, ViewItemPaintParams &pp);
161
162         /**
163          * Paints the mid-layer of the trace with a QPainter
164          * @param p the QPainter to paint into.
165          * @param pp the painting parameters object to paint with.
166          */
167         void paint_mid(QPainter &p, ViewItemPaintParams &pp);
168
169         /**
170          * Paints the foreground layer of the trace with a QPainter
171          * @param p the QPainter to paint into.
172          * @param pp the painting parameters object to paint with.
173          */
174         void paint_fore(QPainter &p, ViewItemPaintParams &pp);
175
176         void populate_popup_form(QWidget *parent, QFormLayout *form);
177
178         QMenu* create_header_context_menu(QWidget *parent);
179
180         virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
181
182         virtual void delete_pressed();
183
184         virtual void hover_point_changed(const QPoint &hp);
185
186         virtual void mouse_left_press_event(const QMouseEvent* event);
187
188 private:
189         void draw_annotations(deque<const Annotation*>& annotations, QPainter &p,
190                 const ViewItemPaintParams &pp, int y, const DecodeTraceRow& row);
191
192         void draw_annotation(const Annotation* a, QPainter &p,
193                 const ViewItemPaintParams &pp, int y, const DecodeTraceRow& row) const;
194
195         void draw_annotation_block(qreal start, qreal end, Annotation::Class ann_class,
196                 bool use_ann_format, QPainter &p, int y, const DecodeTraceRow& row) const;
197
198         void draw_instant(const Annotation* a, QPainter &p, qreal x, int y) const;
199
200         void draw_range(const Annotation* a, QPainter &p, qreal start, qreal end,
201                 int y, const ViewItemPaintParams &pp, int row_title_width) const;
202
203         void draw_error(QPainter &p, const QString &message, const ViewItemPaintParams &pp);
204
205         void draw_unresolved_period(QPainter &p, int left, int right) const;
206
207         pair<double, double> get_pixels_offset_samples_per_pixel() const;
208
209         /**
210          * Determines the start and end sample for a given pixel range.
211          * @param x_start the X coordinate of the start sample in the view
212          * @param x_end the X coordinate of the end sample in the view
213          * @return Returns a pair containing the start sample and the end
214          *      sample that correspond to the start and end coordinates.
215          */
216         pair<uint64_t, uint64_t> get_view_sample_range(int x_start, int x_end) const;
217
218         QColor get_row_color(int row_index) const;
219         QColor get_annotation_color(QColor row_color, int annotation_index) const;
220
221         unsigned int get_row_y(const DecodeTraceRow* row) const;
222
223         DecodeTraceRow* get_row_at_point(const QPoint &point);
224
225         const QString get_annotation_at_point(const QPoint &point);
226
227         void update_stack_button();
228
229         void create_decoder_form(int index, shared_ptr<Decoder> &dec,
230                 QWidget *parent, QFormLayout *form);
231
232         QComboBox* create_channel_selector(QWidget *parent,
233                 const data::decode::DecodeChannel *ch);
234         QComboBox* create_channel_selector_init_state(QWidget *parent,
235                 const data::decode::DecodeChannel *ch);
236
237         void export_annotations(deque<const Annotation*>& annotations) const;
238
239         void initialize_row_widgets(DecodeTraceRow* r, unsigned int row_id);
240         void update_rows();
241
242         /**
243          * Sets row r to expanded state without forcing an update of the view
244          */
245         void set_row_expanded(DecodeTraceRow* r);
246
247         /**
248          * Sets row r to collapsed state without forcing an update of the view
249          */
250         void set_row_collapsed(DecodeTraceRow* r);
251
252         void update_expanded_rows();
253
254 private Q_SLOTS:
255         void on_setting_changed(const QString &key, const QVariant &value);
256
257         void on_new_annotations();
258         void on_delayed_trace_update();
259         void on_decode_reset();
260         void on_decode_finished();
261         void on_pause_decode();
262
263         void on_delete();
264
265         void on_channel_selected(int);
266
267         void on_channels_updated();
268
269         void on_init_state_changed(int);
270
271         void on_stack_decoder(srd_decoder *decoder);
272
273         void on_delete_decoder(int index);
274
275         void on_show_hide_decoder(int index);
276         void on_show_hide_row(int row_id);
277         void on_show_hide_class(QWidget* sender);
278         void on_show_all_classes();
279         void on_hide_all_classes();
280         void on_row_container_resized(QWidget* sender);
281
282         void on_copy_annotation_to_clipboard();
283
284         void on_export_row();
285         void on_export_all_rows();
286         void on_export_row_with_cursor();
287         void on_export_all_rows_with_cursor();
288         void on_export_row_from_here();
289         void on_export_all_rows_from_here();
290
291         void on_animation_timer();
292
293 private:
294         pv::Session &session_;
295         shared_ptr<data::DecodeSignal> decode_signal_;
296
297         deque<DecodeTraceRow> rows_;
298         mutable mutex row_modification_mutex_;
299
300         map<QComboBox*, uint16_t> channel_id_map_;  // channel selector -> decode channel ID
301         map<QComboBox*, uint16_t> init_state_map_;  // init state selector -> decode channel ID
302         list< shared_ptr<pv::binding::Decoder> > bindings_;
303
304         const Row* selected_row_;
305         pair<uint64_t, uint64_t> selected_sample_range_;
306
307         vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
308         QPushButton* stack_button_;
309
310         unsigned int default_row_height_, annotation_height_;
311         unsigned int visible_rows_, max_visible_rows_;
312
313         int min_useful_label_width_;
314         bool always_show_all_rows_;
315
316         QSignalMapper delete_mapper_, show_hide_mapper_;
317         QSignalMapper row_show_hide_mapper_, class_show_hide_mapper_;
318
319         QTimer delayed_trace_updater_, animation_timer_;
320
321         QPolygon default_marker_shape_;
322
323 #if DECODETRACE_SHOW_RENDER_TIME
324         QElapsedTimer render_time_;
325 #endif
326 };
327
328 } // namespace trace
329 } // namespace views
330 } // namespace pv
331
332 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP