QtGraphics | paint()函数经验记录

1 去除Item选中后的虚线框效果

在项目中需要实现点击Item选中框高亮,否则选中框消失。在itemChange虚函数中判断Item是否选中,从而来设置边框颜色是否可见:

QVariant itemChange(GraphicsItemChange change, const QVariant &value)
    {
        if(change == ItemSelectedHasChanged)
        {
            bool selected = value.toBool();
            if(selected)
            {
                this->cBorderColor.setAlpha(255);
            }
            else
            {
                this->cBorderColor.setAlpha(0);
            }
        }
    }

但是Item有默认的选中效果,Item有QRectF形状的虚线框覆盖在边界框上。
将虚线框去掉的代码需要设置option,如下:

void MGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
	QStyleOptionGraphicsItem optionx(*option );
	optionx.state &= ~QStyle::State_Selected;
	QItem::paint(painter, &optionx, widget);
}
posted @ 2022-10-19 20:55  YueLiGo  阅读(122)  评论(0编辑  收藏  举报