X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.cpp;h=7f2334788f70f93c2a734d680c90d6a8b957d293;hp=689c08dec6eaf16a1ba9a52acc259fd38c30f36e;hb=1e948182f3f9353bd74875a37cacc833312a8c8e;hpb=f54e68b03d5d24c7787962fcc701d8d52b0ec8ab diff --git a/pv/data/decode/annotation.cpp b/pv/data/decode/annotation.cpp index 689c08de..7f233478 100644 --- a/pv/data/decode/annotation.cpp +++ b/pv/data/decode/annotation.cpp @@ -26,6 +26,7 @@ extern "C" { #include #include +#include "pv/data/decode/rowdata.hpp" using std::vector; @@ -33,60 +34,46 @@ namespace pv { namespace data { namespace decode { -Annotation::Annotation(const srd_proto_data *const pdata, const Row *row) : - start_sample_(pdata->start_sample), - end_sample_(pdata->end_sample), - row_(row) +Annotation::Annotation(uint64_t start_sample, uint64_t end_sample, + const vector* texts, uint32_t ann_class_id, const RowData *data) : + start_sample_(start_sample), + end_sample_(end_sample), + texts_(texts), + ann_class_id_(ann_class_id), + data_(data) { - assert(pdata); - const srd_proto_data_annotation *const pda = - (const srd_proto_data_annotation*)pdata->data; - assert(pda); - - ann_class_id_ = (Class)(pda->ann_class); - - annotations_ = new vector(); - - const char *const *annotations = (char**)pda->ann_text; - while (*annotations) { - annotations_->push_back(QString::fromUtf8(*annotations)); - annotations++; - } - - annotations_->shrink_to_fit(); } Annotation::Annotation(Annotation&& a) : start_sample_(a.start_sample_), end_sample_(a.end_sample_), - annotations_(a.annotations_), - row_(a.row_), - ann_class_id_(a.ann_class_id_) + texts_(a.texts_), + ann_class_id_(a.ann_class_id_), + data_(a.data_) { - a.annotations_ = nullptr; } Annotation& Annotation::operator=(Annotation&& a) { if (&a != this) { - if (annotations_) - delete annotations_; - start_sample_ = a.start_sample_; end_sample_ = a.end_sample_; - annotations_ = a.annotations_; - row_ = a.row_; + texts_ = a.texts_; ann_class_id_ = a.ann_class_id_; - - a.annotations_ = nullptr; + data_ = a.data_; } return *this; } -Annotation::~Annotation() +const RowData* Annotation::row_data() const { - delete annotations_; + return data_; +} + +const Row* Annotation::row() const +{ + return data_->row(); } uint64_t Annotation::start_sample() const @@ -99,7 +86,12 @@ uint64_t Annotation::end_sample() const return end_sample_; } -Annotation::Class Annotation::ann_class_id() const +uint64_t Annotation::length() const +{ + return end_sample_ - start_sample_; +} + +uint32_t Annotation::ann_class_id() const { return ann_class_id_; } @@ -107,24 +99,50 @@ Annotation::Class Annotation::ann_class_id() const const QString Annotation::ann_class_name() const { const AnnotationClass* ann_class = - row_->decoder()->get_ann_class_by_id(ann_class_id_); + data_->row()->decoder()->get_ann_class_by_id(ann_class_id_); return QString(ann_class->name); } +const QString Annotation::ann_class_description() const +{ + const AnnotationClass* ann_class = + data_->row()->decoder()->get_ann_class_by_id(ann_class_id_); + + return QString(ann_class->description); +} + const vector* Annotation::annotations() const { - return annotations_; + return texts_; } const QString Annotation::longest_annotation() const { - return annotations_->front(); + return texts_->front(); } -const Row* Annotation::row() const +bool Annotation::visible() const +{ + const Row* row = data_->row(); + + return (row->visible() && row->class_is_visible(ann_class_id_) + && row->decoder()->visible()); +} + +const QColor Annotation::color() const +{ + return data_->row()->get_class_color(ann_class_id_); +} + +const QColor Annotation::bright_color() const +{ + return data_->row()->get_bright_class_color(ann_class_id_); +} + +const QColor Annotation::dark_color() const { - return row_; + return data_->row()->get_dark_class_color(ann_class_id_); } bool Annotation::operator<(const Annotation &other) const