Qt on Android:QTableView不显示选中虚框
在使用 QTableView 或 QTableWidget 时,有时我们不想要选中虚框,可以实现一个 ItemDelegate ,重写 drawFocus() 和 drawCheck() 两个虚函数,然后调用 QAbstractItemView 的 setItemDelegate() 把自定义的 itemDelegate 对象传递给 QTableView 即可。需要注意的是,QAbstractItemView 不会删除你设置给它的 ItemDelegate ,需要开发者自己在合适的时候删除它。
下面是一个示例, RowDelegate 的代码:
#include <QItemDelegate> class RowDelegate : public QItemDelegate { public: RowDelegate(QObject * parent = 0) :QItemDelegate(parent) { } virtual void drawFocus(QPainter *painter, const QStyleOptionViewItem &option, const QRect &rect) const { } virtual void drawCheck(QPainter *painter, const QStyleOptionViewItem &option, const QRect &rect, Qt::CheckState state) const { } };
如你所见,RowDelegate 类的 drawFocus() 和 drawCheck() 嘛事不干,这样就达到了目的。
对于 QListView 或 QListWidget ,使用上面的代码也可以去掉选中虚框。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。