]> sigrok.org Git - pulseview.git/blob - pv/data/decodesignal.hpp
23ab209b73a2faa784806fe5d24b68abd6683e96
[pulseview.git] / pv / data / decodesignal.hpp
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
27 using std::shared_ptr;
28
29 namespace pv {
30 namespace data {
31
32 class DecoderStack;
33 class Logic;
34 class SignalData;
35
36 class DecodeSignal : public SignalBase
37 {
38         Q_OBJECT
39
40 public:
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
51 Q_SIGNALS:
52         void new_annotations();
53
54 private Q_SLOTS:
55         void on_new_annotations();
56
57 private:
58         shared_ptr<pv::data::DecoderStack> decoder_stack_;
59 };
60
61 } // namespace data
62 } // namespace pv
63
64 #endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP