我已经公开了QList<MyItem*>作为ListView的模型。但是,如何获取ListView对象的MyItem*索引?

上下文:我正在C++中创建一个findObject()函数,当我找到对象(一个MyItem*)时,我想滚动到ListView中的相应项。

一些代码(完整的源代码和Qt Creator项目可以在https://github.com/joncol/qml_test上找到)。

物品类别:

class MyItem : public QObject
{
    Q_OBJECT
    Q_PROPERTY(qint32 data READ data NOTIFY dataChanged)

public:
    MyItem() : m_data(s_counter++) {}

    quint32 data() const { return m_data; }

signals:
    void dataChanged();

private:
    static int s_counter;
    int m_data;
};

该模型:
class MyCppModel : public QObject
{
    Q_OBJECT

    Q_PROPERTY(QQmlListProperty<MyItem> itemList READ itemList NOTIFY itemListChanged)

public:
    MyCppModel()
    {
        m_specialItem = new MyItem;

        m_model.append(new MyItem);
        m_model.append(new MyItem);
        m_model.append(new MyItem);
        m_model.append(m_specialItem);
        m_model.append(new MyItem);
    }

    QQmlListProperty<MyItem> itemList()
    {
        return QQmlListProperty<MyItem>(this, m_model);
    }

    Q_INVOKABLE QVariant specialItem()
    {
        return QVariant::fromValue(m_specialItem);
    }

signals:
    void itemListChanged();

private:
    QList<MyItem*> m_model;
    MyItem* m_specialItem; // simulate found item
};

“主要”功能:
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QQmlApplicationEngine engine;
    QQmlContext* c = engine.rootContext();

    MyCppModel* myCppModel = new MyCppModel;
    c->setContextProperty("myCppModel", myCppModel);

    qmlRegisterUncreatableType<MyItem>("CppModel", 1, 0, "MyItem", "");

    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));

    return app.exec();
}

最后,QML:
ApplicationWindow {
    title: qsTr("Testing")
    width: 640
    height: 480
    visible: true

    ColumnLayout {
        anchors.centerIn: parent

        Rectangle {
            width: 150
            height: 25
            color: "#e67e22"
            border.width: 1
            border.color: "black"

            Text {
                anchors.centerIn: parent
                text: "Mark Special Item"
            }
            MouseArea {
                anchors.fill: parent
                onClicked: {
                    var item = myCppModel.specialItem()
                    console.debug("how to color the special item: " + item)
                }
            }
        }

        ListView {
            id: itemList
            width: 200
            height: 25 * count

            model: myCppModel.itemList

            delegate: Item {
                width: parent.width
                height: 25

                Rectangle {
                    width: parent.width
                    height: 20
                    color: "#34495e"
                    border.width: 1
                    border.color: "black"

                    Text {
                        x: 10
                        anchors.verticalCenter: parent.verticalCenter
                        text: modelData.data
                        color: "white"
                    }
                }
            }
        }
    }
}

最佳答案

有几种方法可以执行此操作,具体取决于您的应用程序逻辑。

1.将isSpecialItem属性添加到MyItem

class MyItem : public QObject
{
    Q_OBJECT
    Q_PROPERTY(qint32 data READ data NOTIFY dataChanged)
    Q_PROPERTY(bool isSpecialItem READ isSpecialItem WRITE setIsSpecialItem NOTIFY isSpecialItemChanged)
    // ...
}

您的代表将如下所示:
Rectangle {
    width: parent.width
    height: 20
    color: "#34495e"
    border.width: 1
    border.color: isSpecialItem ? "red" : "black"

    Text {
        x: 10
        anchors.verticalCenter: parent.verticalCenter
        text: modelData.data
        color: "white"
    }
}

这是最简单的方法,但是会污染MyItem,您可能会认为它更特定于UI。

2.使MyCppModel源自QAbstractItemModel

使用此选项,您可以在委托(delegate)中使用SpecialItem role,并且委托(delegate)的QML代码与选项#1相同。

我将其称为解决此问题的规范方法,尤其是在itemList不必是QQmlListProperty的情况下。它不需要将可能特定于UI的isSpecialItem属性添加到MyItem,并且可以按照与当前存储它相同的方式进行存储;在data()函数中,您将编写如下内容:
if (role == SpecialItem) {
    return QVariant(m_specialItem == m_model.at(index.row()));
}

3.将特殊项目公开为列表的索引属性

为此,您需要将specialItem()函数转换为MyCppModel的属性:
Q_PROPERTY(int specialItemIndex READ specialItemIndex WRITE specialItemIndex NOTIFY specialItemIndexChanged)

然后,您的代表看起来与选项2非常相似,只不过一行:
border.color: myCppModel.specialItemIndex == index ? "red" : "black"

关于c++ - 获取QList对象的ListView索引,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30531495/

10-12 04:13