我正在尝试找到通过这些项的coord.x()或coord.y()对QGraphicsitems的QList进行排序的最佳方法。我在几个月里搜索了很多但是还没找到解决方案,......它应该是那样的,...对不起我是菜鸟,...我正在尽我所能!谢谢! (想知道它应该如何......)
void sortedby()
{
QList<QGraphicsItem *> allitems = items();
QList<QGraphicsItem *> alltypedos;
foreach(auto item, allitems) {
if(item->type() == chord::Type) {
alltypedos.append(item);
}
}
qSort(alltypedos.begin(), alltypedos.end(), item->x());
}
只需使用std::sort
和自定义比较功能:
bool lessThan(QGraphicsItem * left, QGraphicsItem * right)
{
return (left->x() < right->x());
}
QList<QGraphicsItem *> items;
auto* it1 = new QGraphicsRectItem(QRect(20, 10, 10, 10));
auto* it2 = new QGraphicsRectItem(QRect(20, 10, 10, 10));
auto* it3 = new QGraphicsRectItem(QRect(20, 10, 10, 10));
auto* it4 = new QGraphicsRectItem(QRect(20, 10, 10, 10));
it1->setPos(20, 0);
it2->setPos(10, 0);
it3->setPos(40, 0);
it4->setPos(15, 0);
items << it1 << it2 << it3 << it4;
std::sort(items.begin(), items.end(), lessThan);
for(QGraphicsItem * item: items)
{
qDebug() << item->pos();
}