Qt QRadioButton设置为只读

项目中有时会需要查看之前设置的参数,但是不能修改,就需要把参数控件设置为只读模式。
QRadioButton没有只读模式,只能禁用控件,但是禁用后图标会变成灰色。

问:如果不想让图标变为灰色该怎么办呢?

答:可以使用一下两种方式解决

1. 贴图

将QRadioButton禁用后,在样式表中设置控件的图标

rdoBtn->setEnable(false);

QRadioButton::indicator::checked:disable{
    image: url(:/images/radiobutton_checked.png);
}
QRadioButton::indicator::unchecked:disable{
    image: url(:/images/radiobutton_unchecked.png);
}


2. 鼠标穿透

换个思路,只读是不能编辑,而QRadioButton的改变一般是通过鼠标点击完成的,所以只有屏蔽掉鼠标点击事件就可以实现不能编辑

void SetReadOnly(QRadioButton* rdoBtn, bool readOnly)
{
     
    rdoBtn->setAttribute(Qt::WA_TransparentForMouseEvents, readOnly);
    rdoBtn->setFocusPolicy(readOnly ? Qt::NoFocus : Qt::StrongFocus);
}

举一反三

其他按钮控件也可以使用该方法实现只读,如QPushButton、QCheckBox等。

你可能感兴趣的:(QT,qt)