]> sigrok.org Git - pulseview.git/blame - pv/view/decodetrace.h
Added message when there is an empty decode stack
[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
613d097c
JH
29#include <QSignalMapper>
30
55d3603d
JH
31#include <boost/shared_ptr.hpp>
32
4e5a4405
JH
33#include <pv/prop/binding/decoderoptions.h>
34
35struct srd_probe;
e563a7c0 36struct srd_decoder;
4e5a4405
JH
37
38class QComboBox;
39
55d3603d 40namespace pv {
119aff65
JH
41
42namespace data {
6e89374a 43class DecoderStack;
7491a29f
JH
44
45namespace decode {
46class Decoder;
47}
119aff65
JH
48}
49
55d3603d
JH
50namespace view {
51
b9329558 52class DecodeTrace : public Trace
55d3603d 53{
e0fc5810
JH
54 Q_OBJECT
55
7491a29f
JH
56private:
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
06bb4e6a
JH
64private:
65 static const QColor DecodeColours[4];
ad50ac1a 66 static const QColor ErrorBgColour;
06bb4e6a 67
55d3603d 68public:
b9329558 69 DecodeTrace(pv::SigSession &session,
6e89374a
JH
70 boost::shared_ptr<pv::data::DecoderStack> decoder_stack,
71 int index);
55d3603d
JH
72
73 bool enabled() const;
74
6e89374a 75 const boost::shared_ptr<pv::data::DecoderStack>& decoder() const;
b6b267bb 76
e0fc5810
JH
77 void set_view(pv::view::View *view);
78
55d3603d 79 /**
fe08b6e8
JH
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
55d3603d 89 * @param p the QPainter to paint into.
55d3603d
JH
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
55d3603d 92 **/
fe08b6e8 93 void paint_mid(QPainter &p, int left, int right);
55d3603d 94
4e5a4405
JH
95 void populate_popup_form(QWidget *parent, QFormLayout *form);
96
c51482b3
JH
97 QMenu* create_context_menu(QWidget *parent);
98
5ed1adf5
JH
99 void delete_pressed();
100
ad50ac1a
JH
101private:
102 void draw_error(QPainter &p, const QString &message,
103 int left, int right);
104
613d097c 105 void create_decoder_form(int index,
7491a29f
JH
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);
4e5a4405
JH
115
116 void commit_probes();
117
9cef9567
JH
118private slots:
119 void on_new_decode_data();
120
c51482b3
JH
121 void on_delete();
122
4e5a4405
JH
123 void on_probe_selected(int);
124
7491a29f
JH
125 void on_stack_decoder(srd_decoder *decoder);
126
613d097c
JH
127 void on_delete_decoder(int index);
128
55d3603d 129private:
6e89374a 130 boost::shared_ptr<pv::data::DecoderStack> _decoder_stack;
e0fc5810
JH
131
132 uint64_t _decode_start, _decode_end;
4e5a4405 133
7491a29f
JH
134 std::list< boost::shared_ptr<pv::prop::binding::DecoderOptions> >
135 _bindings;
4e5a4405 136
7491a29f 137 std::list<ProbeSelector> _probe_selectors;
613d097c
JH
138
139 QSignalMapper _delete_mapper;
55d3603d
JH
140};
141
142} // namespace view
143} // namespace pv
144
b9329558 145#endif // PULSEVIEW_PV_VIEW_DECODETRACE_H