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