Customize sorting of QTreeWidget

来源:互联网 发布:拍网络电影怎么赚钱 编辑:程序博客网 时间:2024/06/05 07:26

http://stackoverflow.com/questions/788080/automatically-sorting-on-insert-in-qtreewidget

http://www.qtforum.org/article/25281/customize-sorting-of-qtreewidget.html#post89343

http://www.qtcentre.org/threads/11045-QTreeWidget-(Row-Check-Custom-Sort)

bool operator< (const QTreeWidgetItem &other) const; //custom sortbool QAppTreeItem::operator<(const QTreeWidgetItem &other) const{const QAppTreeWidget* Parent = dynamic_cast<const QAppTreeWidget*>(treeWidget());const QAppTreeItem* Right = dynamic_cast<const QAppTreeItem*>(&other);if ( Parent ){switch(Parent->sortColumn()){case QAppTreeWidget::COLUMN_IP_ADDRESS:return (IPAddr.toIPv4Address() < Right->IPAddr.toIPv4Address());break;}}return QTreeWidgetItem::operator<(other);}

Attached Files Attached Files

  • File Type: zip Code.zip‎ (2.1 KB, 22 views)

原创粉丝点击