]> sigrok.org Git - pulseview.git/blame - pv/data/decodesignal.hpp
Introduce DecodeSignal class
[pulseview.git] / pv / data / decodesignal.hpp
CommitLineData
ad908057
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
21#define PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
22
23#include <libsigrokdecode/libsigrokdecode.h>
24
25#include <pv/data/signalbase.hpp>
26
27using std::shared_ptr;
28
29namespace pv {
30namespace data {
31
32class DecoderStack;
33class Logic;
34class SignalData;
35
36class DecodeSignal : public SignalBase
37{
38 Q_OBJECT
39
40public:
41 DecodeSignal(shared_ptr<pv::data::DecoderStack> decoder_stack);
42 virtual ~DecodeSignal();
43
44 bool is_decode_signal() const;
45 shared_ptr<pv::data::DecoderStack> decoder_stack() const;
46
47 void stack_decoder(srd_decoder *decoder);
48 void remove_decoder(int index);
49 bool toggle_decoder_visibility(int index);
50
51Q_SIGNALS:
52 void new_annotations();
53
54private Q_SLOTS:
55 void on_new_annotations();
56
57private:
58 shared_ptr<pv::data::DecoderStack> decoder_stack_;
59};
60
61} // namespace data
62} // namespace pv
63
64#endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP