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