X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftabular_decoder%2Fmodel.cpp;h=b87bf05869ef1f118ad69853ff3899ec4e1d097a;hp=1d4d839e4757be2ad20169c09b621f04044013b1;hb=4d0f333acdcd747ffc542d77e679ce08af6031ae;hpb=86d4b8e3e52a422fe3a6956d6bbef27f1859717b diff --git a/pv/views/tabular_decoder/model.cpp b/pv/views/tabular_decoder/model.cpp index 1d4d839e..b87bf058 100644 --- a/pv/views/tabular_decoder/model.cpp +++ b/pv/views/tabular_decoder/model.cpp @@ -17,6 +17,7 @@ * along with this program; if not, see . */ +#include #include #include @@ -25,6 +26,7 @@ #include "view.hpp" #include "pv/util.hpp" +#include "pv/globalsettings.hpp" using std::make_shared; @@ -42,20 +44,34 @@ AnnotationCollectionModel::AnnotationCollectionModel(QObject* parent) : all_annotations_(nullptr), dataset_(nullptr), signal_(nullptr), + first_hidden_column_(0), prev_segment_(0), prev_last_row_(0), + had_highlight_before_(false), hide_hidden_(false) { - GlobalSettings::add_change_handler(this); - theme_is_dark_ = GlobalSettings::current_theme_is_dark(); - - // TBD Maybe use empty columns as indentation levels to indicate stacked decoders - header_data_.emplace_back(tr("Sample")); // Column #0 - header_data_.emplace_back(tr("Time")); // Column #1 - header_data_.emplace_back(tr("Decoder")); // Column #2 - header_data_.emplace_back(tr("Ann Row")); // Column #3 - header_data_.emplace_back(tr("Ann Class")); // Column #4 - header_data_.emplace_back(tr("Value")); // Column #5 + // Note: when adding entries, consider ViewVisibleFilterProxyModel::filterAcceptsRow() + + uint8_t i = 0; + header_data_.emplace_back(tr("Sample")); i++; // Column #0 + header_data_.emplace_back(tr("Time")); i++; // Column #1 + header_data_.emplace_back(tr("Decoder")); i++; // Column #2 + header_data_.emplace_back(tr("Ann Row")); i++; // Column #3 + header_data_.emplace_back(tr("Ann Class")); i++; // Column #4 + header_data_.emplace_back(tr("Value")); i++; // Column #5 + + first_hidden_column_ = i; + header_data_.emplace_back("End Sample"); // Column #6, hidden +} + +int AnnotationCollectionModel::get_hierarchy_level(const Annotation* ann) const +{ + int level = 0; + + const unsigned int ann_stack_level = ann->row_data()->row()->decoder()->get_stack_level(); + level = (signal_->decoder_stack().size() - 1 - ann_stack_level); + + return level; } QVariant AnnotationCollectionModel::data_from_ann(const Annotation* ann, int index) const @@ -76,6 +92,7 @@ QVariant AnnotationCollectionModel::data_from_ann(const Annotation* ann, int ind case 3: return QVariant(ann->row()->description()); // Column #3, Ann Row case 4: return QVariant(ann->ann_class_description()); // Column #4, Ann Class case 5: return QVariant(ann->longest_annotation()); // Column #5, Value + case 6: return QVariant((qulonglong)ann->end_sample()); // Column #6, End Sample default: return QVariant(); } } @@ -91,18 +108,40 @@ QVariant AnnotationCollectionModel::data(const QModelIndex& index, int role) con if ((role == Qt::DisplayRole) || (role == Qt::ToolTipRole)) return data_from_ann(ann, index.column()); - if (role == Qt::BackgroundRole) { - int level = 0; + if (role == Qt::ForegroundRole) { + if (index.column() >= get_hierarchy_level(ann)) { + // Invert the text color if this cell is highlighted + const bool must_highlight = (highlight_sample_num_ > 0) && + ((int64_t)ann->start_sample() <= highlight_sample_num_) && + ((int64_t)ann->end_sample() >= highlight_sample_num_); + + if (must_highlight) { + if (GlobalSettings::current_theme_is_dark()) + return QApplication::palette().brush(QPalette::Window); + else + return QApplication::palette().brush(QPalette::WindowText); + } + } - const unsigned int ann_stack_level = ann->row_data()->row()->decoder()->get_stack_level(); - level = (signal_->decoder_stack().size() - 1 - ann_stack_level); + return QApplication::palette().brush(QPalette::WindowText); + } + if (role == Qt::BackgroundRole) { // Only use custom cell background color if column index reached the hierarchy level - if (index.column() >= level) { - if (theme_is_dark_) - return QBrush(ann->dark_color()); + if (index.column() >= get_hierarchy_level(ann)) { + + QColor color; + const bool must_highlight = (highlight_sample_num_ > 0) && + ((int64_t)ann->start_sample() <= highlight_sample_num_) && + ((int64_t)ann->end_sample() >= highlight_sample_num_); + + if (must_highlight) + color = ann->color(); else - return QBrush(ann->bright_color()); + color = GlobalSettings::current_theme_is_dark() ? + ann->dark_color() : ann->bright_color(); + + return QBrush(color); } } @@ -117,6 +156,11 @@ Qt::ItemFlags AnnotationCollectionModel::flags(const QModelIndex& index) const return Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemNeverHasChildren; } +uint8_t AnnotationCollectionModel::first_hidden_column() const +{ + return first_hidden_column_; +} + QVariant AnnotationCollectionModel::headerData(int section, Qt::Orientation orientation, int role) const { @@ -130,10 +174,9 @@ QModelIndex AnnotationCollectionModel::index(int row, int column, const QModelIndex& parent_idx) const { (void)parent_idx; - assert(row >= 0); assert(column >= 0); - if (!dataset_) + if (!dataset_ || (row < 0)) return QModelIndex(); QModelIndex idx; @@ -170,6 +213,8 @@ int AnnotationCollectionModel::columnCount(const QModelIndex& parent_idx) const void AnnotationCollectionModel::set_signal_and_segment(data::DecodeSignal* signal, uint32_t current_segment) { + layoutAboutToBeChanged(); + if (!signal) { all_annotations_ = nullptr; dataset_ = nullptr; @@ -180,9 +225,15 @@ void AnnotationCollectionModel::set_signal_and_segment(data::DecodeSignal* signa return; } + disconnect(this, SLOT(on_annotation_visibility_changed())); + all_annotations_ = signal->get_all_annotations_by_segment(current_segment); signal_ = signal; + for (const shared_ptr& dec : signal_->decoder_stack()) + connect(dec.get(), SIGNAL(annotation_visibility_changed()), + this, SLOT(on_annotation_visibility_changed())); + if (hide_hidden_) update_annotations_without_hidden(); else @@ -197,13 +248,12 @@ void AnnotationCollectionModel::set_signal_and_segment(data::DecodeSignal* signa // Force the view associated with this model to update when the segment changes if (prev_segment_ != current_segment) { - dataChanged(QModelIndex(), QModelIndex()); + dataChanged(index(0, 0), index(new_row_count, 0)); layoutChanged(); } else { // Force the view associated with this model to update when we have more annotations if (prev_last_row_ < new_row_count) { - dataChanged(index(prev_last_row_, 0, QModelIndex()), - index(new_row_count, 0, QModelIndex())); + dataChanged(index(prev_last_row_, 0), index(new_row_count, 0)); layoutChanged(); } } @@ -214,6 +264,8 @@ void AnnotationCollectionModel::set_signal_and_segment(data::DecodeSignal* signa void AnnotationCollectionModel::set_hide_hidden(bool hide_hidden) { + layoutAboutToBeChanged(); + hide_hidden_ = hide_hidden; if (hide_hidden_) { @@ -223,6 +275,13 @@ void AnnotationCollectionModel::set_hide_hidden(bool hide_hidden) dataset_ = all_annotations_; all_annotations_without_hidden_.clear(); // To conserve memory } + + if (dataset_) + dataChanged(index(0, 0), index(dataset_->size() - 1, 0)); + else + dataChanged(QModelIndex(), QModelIndex()); + + layoutChanged(); } void AnnotationCollectionModel::update_annotations_without_hidden() @@ -245,19 +304,64 @@ void AnnotationCollectionModel::update_annotations_without_hidden() } all_annotations_without_hidden_.resize(count); +} - dataChanged(index(0, 0, QModelIndex()), index(count, 0, QModelIndex())); - layoutChanged(); +QModelIndex AnnotationCollectionModel::update_highlighted_rows(QModelIndex first, + QModelIndex last, int64_t sample_num) +{ + bool has_highlight = false; + QModelIndex result; + + highlight_sample_num_ = sample_num; + + if (!dataset_ || dataset_->empty()) + return result; + + if (sample_num >= 0) { + last = last.sibling(last.row() + 1, 0); + + // Check if there are any annotations visible in the table view that + // we would need to highlight - only then do we do so + QModelIndex index = first; + do { + const Annotation* ann = static_cast(index.internalPointer()); + if (!ann) // Can happen if the table is being modified at this exact time + return result; + + if (((int64_t)ann->start_sample() <= sample_num) && + ((int64_t)ann->end_sample() >= sample_num)) { + result = index; + has_highlight = true; + break; + } + + index = index.sibling(index.row() + 1, 0); + } while (index != last); + } + + if (has_highlight || had_highlight_before_) + dataChanged(first, last); + + had_highlight_before_ = has_highlight; + + return result; } -void AnnotationCollectionModel::on_setting_changed(const QString &key, const QVariant &value) +void AnnotationCollectionModel::on_annotation_visibility_changed() { - (void)key; - (void)value; + if (!hide_hidden_) + return; + + layoutAboutToBeChanged(); - // We don't really care about the actual setting, we just update the - // flag that indicates whether we are using a bright or dark color theme - theme_is_dark_ = GlobalSettings::current_theme_is_dark(); + update_annotations_without_hidden(); + + if (dataset_) + dataChanged(index(0, 0), index(dataset_->size() - 1, 0)); + else + dataChanged(QModelIndex(), QModelIndex()); + + layoutChanged(); } } // namespace tabular_decoder