1

我使用带有两列的 QTableWidget。第一列显示图像。第二列显示文本。我调用QBrush::setTexture的是第一列,而不是setIcon函数。

我希望在单击其单元格时更改第一列图像,但是单击单元格时出现的图像存在问题。

这是我期望的图像:
这是我期望的图像

这是我得到的图像:
这是我得到的图像

这是代码

.h 文件

class KcBackgroundDelegate : public QStyledItemDelegate { public:
explicit KcBackgroundDelegate(QObject *parent = 0)
       : QStyledItemDelegate(parent)
   {

   }

   void paint(QPainter *painter, const QStyleOptionViewItem &option,
              const QModelIndex &index) const
   {

       QVariant background = index.data(Qt::BackgroundRole);
        if (background.canConvert<QBrush>())
           painter->fillRect(option.rect, background.value<QBrush>());

        QStyledItemDelegate::paint(painter, option, index);

       if(option.state & QStyle::State_MouseOver)
       {
           if(index.column() == 0 )
           {
               painter->save();
               painter->fillRect(option.rect,QBrush(QPixmap(":/Resources/img/System/setting_aircraft_on_bt.png")));
               painter->restore();
           }
       }

       if(option.state & QStyle::State_Selected)
       {
           if(index.column() == 0)
           {
               painter->save();
               painter->fillRect(option.rect,QBrush(QPixmap(":/Resources/img/System/setting_aircraft_click_bt.png")));
               painter->restore();
           }
       }
   }
};

.cpp 文件

ui->TW_AIRCRAFT_TYPE->setItemDelegateForColumn(0,new KcBackgroundDelegate(this));
ui->TW_AIRCRAFT_TYPE->setMouseTracking(true);
ui->TW_AIRCRAFT_TYPE->viewport()->setMouseTracking(true);
ui->TW_AIRCRAFT_TYPE->installEventFilter(this);
ui->TW_AIRCRAFT_TYPE->viewport()->installEventFilter(this);

代表似乎有问题,但我不知道如何解决。请帮我。

4

0 回答 0