void DecodeTrace::on_new_decode_data()
{
if (owner_)
- owner_->appearance_changed(false, true);
+ owner_->row_item_appearance_changed(false, true);
}
void DecodeTrace::delete_pressed()
decoder_forms_[index]->set_decoder_visible(show);
if (owner_)
- owner_->appearance_changed(false, true);
+ owner_->row_item_appearance_changed(false, true);
}
} // namespace view
new_trigger->stages().empty() ? nullptr : new_trigger);
if (owner_)
- owner_->appearance_changed(false, true);
+ owner_->row_item_appearance_changed(false, true);
}
const QIcon* LogicSignal::get_icon(const char *path)
visual_v_offset_ = v_offset;
if (owner_)
- owner_->appearance_changed(true, true);
+ owner_->row_item_appearance_changed(true, true);
}
void RowItem::force_to_v_offset(int v_offset)
virtual void restack_items();
public:
- virtual void appearance_changed(bool label, bool content) = 0;
+ virtual void row_item_appearance_changed(bool label, bool content) = 0;
virtual void extents_changed(bool horz, bool vert) = 0;
set_colour(colour);
if (owner_)
- owner_->appearance_changed(true, false);
+ owner_->row_item_appearance_changed(true, false);
}
} // namespace view
ungroup();
}
-void TraceGroup::appearance_changed(bool label, bool content)
+void TraceGroup::row_item_appearance_changed(bool label, bool content)
{
if (owner_)
- owner_->appearance_changed(label, content);
+ owner_->row_item_appearance_changed(label, content);
}
void TraceGroup::extents_changed(bool horz, bool vert)
void ungroup();
public:
- void appearance_changed(bool label, bool content);
+ void row_item_appearance_changed(bool label, bool content);
void extents_changed(bool horz, bool vert);
update_layout();
}
-void View::appearance_changed(bool label, bool content)
+void View::row_item_appearance_changed(bool label, bool content)
{
if (label)
header_->update();
void resizeEvent(QResizeEvent *e);
public:
- void appearance_changed(bool label, bool content);
+ void row_item_appearance_changed(bool label, bool content);
void extents_changed(bool horz, bool vert);