]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decode/row.hpp
Introduce DecodeSignal::annotation_visibility_changed and use it
[pulseview.git] / pv / data / decode / row.hpp
... / ...
CommitLineData
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 <QColor>
26
27#include <pv/data/decode/annotation.hpp>
28#include <pv/data/decode/decoder.hpp>
29
30struct srd_decoder;
31struct srd_decoder_annotation_row;
32
33namespace pv {
34namespace data {
35namespace decode {
36
37#define DECODE_COLOR_SATURATION (180) /* 0-255 */
38#define DECODE_COLOR_VALUE (170) /* 0-255 */
39
40class AnnotationClass;
41class Decoder;
42
43class Row: public QObject
44{
45 Q_OBJECT
46
47public:
48 Row();
49
50 Row(uint32_t index, Decoder* decoder,
51 const srd_decoder_annotation_row* srd_row = nullptr);
52
53 const Decoder* decoder() const;
54 const srd_decoder_annotation_row* get_srd_row() const;
55
56 const QString title() const;
57 const QString description() const;
58 vector<AnnotationClass*> ann_classes() const;
59 uint32_t index() const;
60
61 bool visible() const;
62 void set_visible(bool visible);
63
64 void set_base_color(QColor base_color);
65 const QColor color() const;
66 const QColor get_class_color(uint32_t ann_class_id) const;
67 const QColor get_bright_class_color(uint32_t ann_class_id) const;
68 const QColor get_dark_class_color(uint32_t ann_class_id) const;
69
70 bool has_hidden_classes() const;
71 bool class_is_visible(uint32_t ann_class_id) const;
72
73 bool operator<(const Row& other) const;
74 bool operator==(const Row& other) const;
75
76Q_SIGNALS:
77 void visibility_changed();
78
79private:
80 uint32_t index_;
81 Decoder* decoder_;
82 const srd_decoder_annotation_row* srd_row_;
83 bool visible_;
84
85 QColor color_;
86 map<uint32_t, QColor> ann_class_color_;
87 map<uint32_t, QColor> ann_bright_class_color_;
88 map<uint32_t, QColor> ann_dark_class_color_;
89};
90
91} // namespace decode
92} // namespace data
93} // namespace pv
94
95#endif // PULSEVIEW_PV_DATA_DECODE_ROW_HPP