自定义可检查/可切换的QFrame小部件

时间:2014-11-13 13:48:28

标签: c++ css qt widget qframe

如何使自定义窗口小部件(从“QFrame”派生)包含可检查/可切换的支持? 如何让Qt的样式表(CSS)知道用户检查/切换了我的小部件?

我需要在自定义小部件中使用某种信号或属性吗?

我不想使用(即)QPushButton因为我需要我的按钮小部件来使用Qt的.ui文件。

即。当使用QPushButton时 - 事情很简单:

QPushButton#btnName:focus:pressed { border-image: url(ThemesPathKey/menu-top-h.png);    }
QPushButton#btnName:checked {   border-image: url(ThemesPathKey/menu-top-h.png);    }
QPushButton#btnName:hover { border-image: url(ThemesPathKey/menu-top-h.png);    }

我的自定义按钮小部件需要类似的内容。

感谢。

2 个答案:

答案 0 :(得分:2)

您可以将hoverfocus用于自定义窗口小部件,但仅限按钮和复选框支持checked

要替换checked,您可以使用自定义属性:

QPushButton#btnName[checked="true"] {   border-image: url(ThemesPathKey/menu-top-h.png);    }

点击您的小部件时切换checked属性,如下所示:

void mousePressEvent(QMouseEvent*) override
{
    bool checked = property("checked").toBool();
    setProperty("checked", !checked);
    style()->polish(this);
}

答案 1 :(得分:1)

对于悬停,您可以对任何派生的窗口小部件使用相同的方法:

class MyClass : public QFrame
{
<...>
}

MyClass a;
a.setStyleSheet("MyClassa:hover{<...>}"); //this will work
a.setStyleSheet("MyClass#a:hover{<...>}"); //and this will work
a.setStyleSheet("QFrame:hover{<...>}"); //Even this will work, too

检查/取消选中更复杂。帧没有检查状态,因此您必须自己实现它。

class MyClass : public QFrame
{
public:
    <...>
protected:
    void mousePressEvent(QMouseEvent * e) override
    {
        checked_ = !checked_;        
        if(checked)
            setStyleSheet("border:1px solid black;");
        else
            setStyleSheet("border:0px;"); 
    }
bool checked_;
}

或类似的东西

class MyClass : public QFrame
{
public:
    <...>
protected:
    void paintEvent(QPaintEvent * e) override
    {
        if(checked)
        {
        //draw something
        }
        else
        {
        //draw something else
        }
    }
    bool checked_;
}