]> sigrok.org Git - pulseview.git/blame - pv/data/decode/annotation.cpp
Move row/annotation color management out of DecodeTrace
[pulseview.git] / pv / data / decode / annotation.cpp
CommitLineData
06e810f2
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
06e810f2
JH
18 */
19
20extern "C" {
21#include <libsigrokdecode/libsigrokdecode.h>
22}
23
943edd76 24#include <cassert>
7c2838bd
JH
25#include <vector>
26
6a26fc44 27#include <pv/data/decode/annotation.hpp>
761f8302 28#include <pv/data/decode/decoder.hpp>
1dcd9b18 29#include "pv/data/decode/rowdata.hpp"
06e810f2 30
6f925ba9
UH
31using std::vector;
32
06e810f2
JH
33namespace pv {
34namespace data {
35namespace decode {
36
1dcd9b18
SA
37Annotation::Annotation(uint64_t start_sample, uint64_t end_sample,
38 const vector<QString>* texts, Class ann_class_id, const RowData *data) :
39 start_sample_(start_sample),
40 end_sample_(end_sample),
41 texts_(texts),
42 ann_class_id_(ann_class_id),
43 data_(data)
06e810f2 44{
462941e2
SA
45}
46
47Annotation::Annotation(Annotation&& a) :
48 start_sample_(a.start_sample_),
49 end_sample_(a.end_sample_),
1dcd9b18
SA
50 texts_(a.texts_),
51 ann_class_id_(a.ann_class_id_),
52 data_(a.data_)
462941e2 53{
462941e2
SA
54}
55
56Annotation& Annotation::operator=(Annotation&& a)
57{
58 if (&a != this) {
462941e2
SA
59 start_sample_ = a.start_sample_;
60 end_sample_ = a.end_sample_;
1dcd9b18 61 texts_ = a.texts_;
462941e2 62 ann_class_id_ = a.ann_class_id_;
1dcd9b18 63 data_ = a.data_;
462941e2
SA
64 }
65
66 return *this;
67}
68
ae30ff42 69const Row* Annotation::row() const
462941e2 70{
ae30ff42 71 return data_->row();
06e810f2
JH
72}
73
74uint64_t Annotation::start_sample() const
75{
8dbbc7f0 76 return start_sample_;
06e810f2
JH
77}
78
79uint64_t Annotation::end_sample() const
80{
8dbbc7f0 81 return end_sample_;
06e810f2
JH
82}
83
462941e2 84Annotation::Class Annotation::ann_class_id() const
06e810f2 85{
462941e2 86 return ann_class_id_;
06e810f2
JH
87}
88
761f8302
SA
89const QString Annotation::ann_class_name() const
90{
91 const AnnotationClass* ann_class =
1dcd9b18 92 data_->row()->decoder()->get_ann_class_by_id(ann_class_id_);
761f8302
SA
93
94 return QString(ann_class->name);
95}
96
462941e2 97const vector<QString>* Annotation::annotations() const
06e810f2 98{
1dcd9b18 99 return texts_;
06e810f2
JH
100}
101
f54e68b0
SA
102const QString Annotation::longest_annotation() const
103{
1dcd9b18 104 return texts_->front();
f54e68b0
SA
105}
106
ae30ff42 107const QColor Annotation::color() const
5a914348 108{
ae30ff42
SA
109 return data_->row()->get_class_color(ann_class_id_);
110}
111
112const QColor Annotation::bright_color() const
113{
114 return data_->row()->get_bright_class_color(ann_class_id_);
115}
116
117const QColor Annotation::dark_color() const
118{
119 return data_->row()->get_dark_class_color(ann_class_id_);
5a914348
SA
120}
121
122bool Annotation::operator<(const Annotation &other) const
123{
124 return (start_sample_ < other.start_sample_);
125}
126
06e810f2
JH
127} // namespace decode
128} // namespace data
129} // namespace pv