Qt实现wgt在点击focux状态时加边框效果

Posted 也无风雨、也无晴。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt实现wgt在点击focux状态时加边框效果相关的知识,希望对你有一定的参考价值。

背景

  • 项目中需要给一个自定义的QWidget控件加选中边框。

思路

  • 加透明背景,设置border带颜色边框,响应focux事件切换选中及默认状态。

实现

m_borderWgt = new QWidget(this);
m_borderWgt->setAttribute(Qt::WA_TransparentForMouseEvents);
m_borderWgt->setStyleSheet("background:transparent; border:1px solid blue;");

void TestWidget::focusInEvent(QFocusEvent *event)
{
    m_bFocus = true;
    focusState();
    this->update();
}

void TestWidget::focusOutEvent(QFocusEvent *event)
{
    m_bFocus = false;
    focusState();
    this->update();
}

void TestWidget::focusState()
{
    m_borderWgt->setGeometry(0, 0, rect().width(), rect().height());
    if (m_bFocus) {
        m_borderWgt->show();
    } else {
        m_borderWgt->hide();
    }
}

以上是关于Qt实现wgt在点击focux状态时加边框效果的主要内容,如果未能解决你的问题,请参考以下文章

css3实现按钮边框带动画效果

Qt仿360安全卫士界面(自定义阴影边框类)

Qt仿360安全卫士界面(自定义阴影边框类)

Qt仿360安全卫士界面(自定义阴影边框类)

Qt仿360安全卫士界面(自定义阴影边框类)

qt按钮边框的问题