]> sigrok.org Git - pulseview.git/blob - pv/view/decodetrace.h
Improved row annotation colouring
[pulseview.git] / pv / view / decodetrace.h
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_H
22 #define PULSEVIEW_PV_VIEW_DECODETRACE_H
23
24 #include "trace.h"
25
26 #include <list>
27 #include <map>
28
29 #include <QSignalMapper>
30
31 #include <boost/shared_ptr.hpp>
32
33 #include <pv/prop/binding/decoderoptions.h>
34
35 struct srd_probe;
36 struct srd_decoder;
37
38 class QComboBox;
39
40 namespace pv {
41
42 namespace data {
43 class DecoderStack;
44
45 namespace decode {
46 class Annotation;
47 class Decoder;
48 }
49 }
50
51 namespace view {
52
53 class DecodeTrace : public Trace
54 {
55         Q_OBJECT
56
57 private:
58         struct ProbeSelector
59         {
60                 const QComboBox *_combo;
61                 const boost::shared_ptr<pv::data::decode::Decoder> _decoder;
62                 const srd_probe *_probe;
63         };
64
65 private:
66         static const QColor DecodeColours[4];
67         static const QColor ErrorBgColour;
68         static const QColor NoDecodeColour;
69
70         static const double EndCapWidth;
71         static const int DrawPadding;
72
73         static const QColor Colours[7];
74
75 public:
76         DecodeTrace(pv::SigSession &session,
77                 boost::shared_ptr<pv::data::DecoderStack> decoder_stack,
78                 int index);
79
80         bool enabled() const;
81
82         const boost::shared_ptr<pv::data::DecoderStack>& decoder() const;
83
84         void set_view(pv::view::View *view);
85
86         /**
87          * Paints the background layer of the trace with a QPainter
88          * @param p the QPainter to paint into.
89          * @param left the x-coordinate of the left edge of the signal.
90          * @param right the x-coordinate of the right edge of the signal.
91          **/
92         void paint_back(QPainter &p, int left, int right);
93
94         /**
95          * Paints the mid-layer of the trace with a QPainter
96          * @param p the QPainter to paint into.
97          * @param left the x-coordinate of the left edge of the signal
98          * @param right the x-coordinate of the right edge of the signal
99          **/
100         void paint_mid(QPainter &p, int left, int right);
101
102         void populate_popup_form(QWidget *parent, QFormLayout *form);
103
104         QMenu* create_context_menu(QWidget *parent);
105
106         void delete_pressed();
107
108 private:
109         void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
110                 QColor text_colour, int text_height, int left, int right,
111                 double samples_per_pixel, double pixels_offset, int y,
112                 unsigned int row_index) const;
113
114         void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
115                 QColor fill, QColor outline, QColor text_color, int h, double x,
116                 int y) const;
117
118         void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
119                 QColor fill, QColor outline, QColor text_color, int h, double start,
120                 double end, int y) const;
121
122         void draw_error(QPainter &p, const QString &message,
123                 int left, int right);
124
125         void draw_unresolved_period(QPainter &p, int h, int left,
126                 int right, double samples_per_pixel, double pixels_offset);
127
128         void create_decoder_form(int index,
129                 boost::shared_ptr<pv::data::decode::Decoder> &dec,
130                 QWidget *parent, QFormLayout *form);
131
132         QComboBox* create_probe_selector(QWidget *parent,
133                 const boost::shared_ptr<pv::data::decode::Decoder> &dec,
134                 const srd_probe *const probe);
135
136         void commit_decoder_probes(
137                 boost::shared_ptr<data::decode::Decoder> &dec);
138
139         void commit_probes();
140
141 private slots:
142         void on_new_decode_data();
143
144         void on_delete();
145
146         void on_probe_selected(int);
147
148         void on_stack_decoder(srd_decoder *decoder);
149
150         void on_delete_decoder(int index);
151
152 private:
153         boost::shared_ptr<pv::data::DecoderStack> _decoder_stack;
154
155         uint64_t _decode_start, _decode_end;
156
157         std::list< boost::shared_ptr<pv::prop::binding::DecoderOptions> >
158                 _bindings;
159
160         std::list<ProbeSelector> _probe_selectors;
161
162         QSignalMapper _delete_mapper;
163 };
164
165 } // namespace view
166 } // namespace pv
167
168 #endif // PULSEVIEW_PV_VIEW_DECODETRACE_H