| 335 | } |
| 336 | |
| 337 | bool DecoderStack::list_annotation(pv::data::decode::Annotation *ann, |
| 338 | uint16_t row_index, uint64_t col_index) |
| 339 | { |
| 340 | for (auto i = _rows.begin(); i != _rows.end(); i++) { |
| 341 | auto iter = _rows_lshow.find((*i).first); |
| 342 | if (iter != _rows_lshow.end() && (*iter).second) { |
| 343 | if (row_index-- == 0) { |
| 344 | return (*i).second->get_annotation(ann, col_index); |
| 345 | } |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | return false; |
| 350 | } |
| 351 | |
| 352 | |
| 353 | bool DecoderStack::list_row_title(int row, QString &title) |
no test coverage detected