]> sigrok.org Git - pulseview.git/blob - pv/data/decode/row.hpp
Rework decoder infrastructure
[pulseview.git] / pv / data / decode / row.hpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2014 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef PULSEVIEW_PV_DATA_DECODE_ROW_HPP
21 #define PULSEVIEW_PV_DATA_DECODE_ROW_HPP
22
23 #include <vector>
24
25 #include <pv/data/decode/annotation.hpp>
26 #include <pv/data/decode/decoder.hpp>
27
28 struct srd_decoder;
29 struct srd_decoder_annotation_row;
30
31 namespace pv {
32 namespace data {
33 namespace decode {
34
35 struct AnnotationClass;
36 class Decoder;
37
38 class Row
39 {
40 public:
41         Row();
42
43         Row(uint32_t index, Decoder* decoder,
44                 const srd_decoder_annotation_row* srd_row = nullptr);
45
46         const Decoder* decoder() const;
47         const srd_decoder_annotation_row* get_srd_row() const;
48
49         const QString title() const;
50         const QString description() const;
51         vector<AnnotationClass*> ann_classes() const;
52         uint32_t index() const;
53
54         bool visible() const;
55         void set_visible(bool visible);
56
57         bool operator<(const Row& other) const;
58         bool operator==(const Row& other) const;
59
60 private:
61         uint32_t index_;
62         Decoder* decoder_;
63         const srd_decoder_annotation_row* srd_row_;
64         bool visible_;
65 };
66
67 }  // namespace decode
68 }  // namespace data
69 }  // namespace pv
70
71 #endif // PULSEVIEW_PV_DATA_DECODE_ROW_HPP