]> sigrok.org Git - pulseview.git/blame - pv/view/decodetrace.h
Make header width responsive to label text
[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;
5dfeb70f 67 static const QColor NoDecodeColour;
06bb4e6a 68
55d3603d 69public:
b9329558 70 DecodeTrace(pv::SigSession &session,
6e89374a
JH
71 boost::shared_ptr<pv::data::DecoderStack> decoder_stack,
72 int index);
55d3603d
JH
73
74 bool enabled() const;
75
6e89374a 76 const boost::shared_ptr<pv::data::DecoderStack>& decoder() const;
b6b267bb 77
e0fc5810
JH
78 void set_view(pv::view::View *view);
79
55d3603d 80 /**
fe08b6e8
JH
81 * Paints the background layer of the trace with a QPainter
82 * @param p the QPainter to paint into.
83 * @param left the x-coordinate of the left edge of the signal.
84 * @param right the x-coordinate of the right edge of the signal.
85 **/
86 void paint_back(QPainter &p, int left, int right);
87
88 /**
89 * Paints the mid-layer of the trace with a QPainter
55d3603d 90 * @param p the QPainter to paint into.
55d3603d
JH
91 * @param left the x-coordinate of the left edge of the signal
92 * @param right the x-coordinate of the right edge of the signal
55d3603d 93 **/
fe08b6e8 94 void paint_mid(QPainter &p, int left, int right);
55d3603d 95
4e5a4405
JH
96 void populate_popup_form(QWidget *parent, QFormLayout *form);
97
c51482b3
JH
98 QMenu* create_context_menu(QWidget *parent);
99
5ed1adf5
JH
100 void delete_pressed();
101
ad50ac1a
JH
102private:
103 void draw_error(QPainter &p, const QString &message,
104 int left, int right);
105
5dfeb70f
JH
106 void draw_unresolved_period(QPainter &p, int h, int left,
107 int right, double samples_per_pixel, double pixels_offset);
108
613d097c 109 void create_decoder_form(int index,
7491a29f
JH
110 boost::shared_ptr<pv::data::decode::Decoder> &dec,
111 QWidget *parent, QFormLayout *form);
112
113 QComboBox* create_probe_selector(QWidget *parent,
114 const boost::shared_ptr<pv::data::decode::Decoder> &dec,
115 const srd_probe *const probe);
116
117 void commit_decoder_probes(
118 boost::shared_ptr<data::decode::Decoder> &dec);
4e5a4405
JH
119
120 void commit_probes();
121
9cef9567
JH
122private slots:
123 void on_new_decode_data();
124
c51482b3
JH
125 void on_delete();
126
4e5a4405
JH
127 void on_probe_selected(int);
128
7491a29f
JH
129 void on_stack_decoder(srd_decoder *decoder);
130
613d097c
JH
131 void on_delete_decoder(int index);
132
55d3603d 133private:
6e89374a 134 boost::shared_ptr<pv::data::DecoderStack> _decoder_stack;
e0fc5810
JH
135
136 uint64_t _decode_start, _decode_end;
4e5a4405 137
7491a29f
JH
138 std::list< boost::shared_ptr<pv::prop::binding::DecoderOptions> >
139 _bindings;
4e5a4405 140
7491a29f 141 std::list<ProbeSelector> _probe_selectors;
613d097c
JH
142
143 QSignalMapper _delete_mapper;
55d3603d
JH
144};
145
146} // namespace view
147} // namespace pv
148
b9329558 149#endif // PULSEVIEW_PV_VIEW_DECODETRACE_H