QT property属性的应用

在QT的控件使用中,我们常常想在某个控件上(比如QPushButton)记录上我们一些自定义的一些属性,用作标记也好,识别符也好。 我们可以使用QObject的属性property

 QObject::property

对于一个基于QObject的控件来讲,我们可以通过setProperty来设置此控件的属性

bool QObject::setProperty(const char *name, const QVariant &value)

说明一下,参数name为自定义的属性名称,注意不要和控件的默认属性名称相同;value为此属性的值。

在我们使用的时候,我们使用property来获取某个属性的值:

QVariant QObject::property(const char *name) const


===========================举个栗子===============================


设置一个QPushbutton 的“rowIndex”属性,来记录这个按钮在第几行。

        QPushButton *btn = new QPushButton("查看");
        btn->setProperty("rowIndex", i);

        connect(btn, &QPushButton::clicked, this, &tableFrom::slotBtnClicked);

当点击这个按钮时候,来获取点击的是第几行的按钮。

void tableFrom::slotBtnClicked(bool checked)
{
    Q_UNUSED(checked)
    QPushButton *btn = dynamic_cast (sender());
    if(btn != Q_NULLPTR)
    {
        int index = btn->property("rowIndex").toInt();
        qDebug() << "clicked row index = " << index;
    }
}

你可能感兴趣的:(QT)