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