Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望避免为我不感兴趣的选项状态调用我的自定义 QAbstractItemDelegate 的 paint() 函数。具体来说,我不希望支持任何悬停功能,所以我不想在鼠标悬停时重新绘制一个表格单元格。
有什么建议么?
我不相信有一种方法可以为不同类型的事件禁用绘画。
但是,您应该能够通过禁用鼠标跟踪来禁用由于鼠标悬停而导致的绘画:
myWidget->setMouseTracking(false);
QWidget::setMouseTracking