Added support for sorting ListItems in a ListView
This commit is contained in:
@@ -29,6 +29,11 @@ namespace Bloom::Widgets
|
||||
this->valueText.clear();
|
||||
}
|
||||
|
||||
bool operator < (const ListItem& rhs) const override {
|
||||
const auto& rhsRegisterItem = dynamic_cast<const RegisterItem&>(rhs);
|
||||
return this->registerName < rhsRegisterItem.registerName;
|
||||
}
|
||||
|
||||
void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget) override;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user