X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.cpp;h=4a6890b5a4e519a5aac786d408d97953985a4836;hp=6a30921e71deec541a7e8e929bcdf13e8ead1fa4;hb=619e8bd3c0c2ca5ae059ba2eabdbd3b3f5233d7e;hpb=06e810f29b6e9e3fe8ba8aba5d3823375da9bbb2 diff --git a/pv/data/decode/annotation.cpp b/pv/data/decode/annotation.cpp index 6a30921e..4a6890b5 100644 --- a/pv/data/decode/annotation.cpp +++ b/pv/data/decode/annotation.cpp @@ -22,9 +22,9 @@ extern "C" { #include } -#include "annotation.h" +#include -using namespace std; +#include "annotation.h" namespace pv { namespace data { @@ -40,10 +40,11 @@ Annotation::Annotation(const srd_proto_data *const pdata) : assert(pda); _format = pda->ann_format; + _row = 0; const char *const *annotations = (char**)pda->ann_text; while(*annotations) { - _annotations.push_back(QString(*annotations)); + _annotations.push_back(QString::fromUtf8(*annotations)); annotations++; } } @@ -63,11 +64,31 @@ int Annotation::format() const return _format; } +int Annotation::row() const +{ + return _row; +} + +int Annotation::pd_index() const +{ + return _pd_index; +} + const std::vector& Annotation::annotations() const { return _annotations; } +void Annotation::set_row(int row) +{ + _row = row; +} + +void Annotation::set_pd_index(int pd_index) +{ + _pd_index = pd_index; +} + } // namespace decode } // namespace data } // namespace pv