]> sigrok.org Git - pulseview.git/blob - pv/view/decodetrace.h
Added missing forward-declaration to DecodeTrace
[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 <boost/shared_ptr.hpp>
30
31 #include <pv/prop/binding/decoderoptions.h>
32
33 struct srd_probe;
34 struct srd_decoder;
35
36 class QComboBox;
37
38 namespace pv {
39
40 namespace data {
41 class DecoderStack;
42
43 namespace decode {
44 class Decoder;
45 }
46 }
47
48 namespace view {
49
50 class DecodeTrace : public Trace
51 {
52         Q_OBJECT
53
54 private:
55         struct ProbeSelector
56         {
57                 const QComboBox *_combo;
58                 const boost::shared_ptr<pv::data::decode::Decoder> _decoder;
59                 const srd_probe *_probe;
60         };
61
62 private:
63         static const QColor DecodeColours[4];
64         static const QColor ErrorBgColour;
65
66 public:
67         DecodeTrace(pv::SigSession &session,
68                 boost::shared_ptr<pv::data::DecoderStack> decoder_stack,
69                 int index);
70
71         bool enabled() const;
72
73         const boost::shared_ptr<pv::data::DecoderStack>& decoder() const;
74
75         void set_view(pv::view::View *view);
76
77         /**
78          * Paints the background layer of the trace with a QPainter
79          * @param p the QPainter to paint into.
80          * @param left the x-coordinate of the left edge of the signal.
81          * @param right the x-coordinate of the right edge of the signal.
82          **/
83         void paint_back(QPainter &p, int left, int right);
84
85         /**
86          * Paints the mid-layer of the trace with a QPainter
87          * @param p the QPainter to paint into.
88          * @param left the x-coordinate of the left edge of the signal
89          * @param right the x-coordinate of the right edge of the signal
90          **/
91         void paint_mid(QPainter &p, int left, int right);
92
93         void populate_popup_form(QWidget *parent, QFormLayout *form);
94
95         QMenu* create_context_menu(QWidget *parent);
96
97         void delete_pressed();
98
99 private:
100         void draw_error(QPainter &p, const QString &message,
101                 int left, int right);
102
103         void create_decoder_form(
104                 boost::shared_ptr<pv::data::decode::Decoder> &dec,
105                 QWidget *parent, QFormLayout *form);
106
107         QComboBox* create_probe_selector(QWidget *parent,
108                 const boost::shared_ptr<pv::data::decode::Decoder> &dec,
109                 const srd_probe *const probe);
110
111         void commit_decoder_probes(
112                 boost::shared_ptr<data::decode::Decoder> &dec);
113
114         void commit_probes();
115
116 private slots:
117         void on_new_decode_data();
118
119         void on_delete();
120
121         void on_probe_selected(int);
122
123         void on_stack_decoder(srd_decoder *decoder);
124
125 private:
126         boost::shared_ptr<pv::data::DecoderStack> _decoder_stack;
127
128         uint64_t _decode_start, _decode_end;
129
130         std::list< boost::shared_ptr<pv::prop::binding::DecoderOptions> >
131                 _bindings;
132
133         std::list<ProbeSelector> _probe_selectors;
134 };
135
136 } // namespace view
137 } // namespace pv
138
139 #endif // PULSEVIEW_PV_VIEW_DECODETRACE_H