我的想法是在列表中创建一堆QObject驱动类(用C ++创建)。然后将此列表传递给QML,并且可以通过单独的QML对象查看每个条目。现在我希望能够将特定实例传递回C ++(例如,单击时)。
以下是一些代码:
QObject派生类
class Data : public QObject
{
Q_OBJECT
Q_PROPERTY(QString name READ name NOTIFY nameChanged)
Data(std::string n):_name(n){};
QString name(){return QString::fromStdString(_name);};
signals:
void nameChanged();
private:
std::string _name;
}
控制器(创建列表并接收所选实例)
class Controller : public QObject
{
Q_OBJECT
Q_PROPERTY(QQmlListProperty<Data> list READ list NOTIFY listChanged)
Controller()
{
_list.append(new Data("data 1");
_list.append(new Data("data 2");
_list.append(new Data("data 3");
};
QQmlListProperty<Data> list() // <--- provide data to QML
{
return QQmlListProperty<Grammar>(this, _list);
};
void takeThisOne(Data* d)// <--- receive selected instance from QML
{
//do something with d
}
signals:
void listChanged();
private:
QList<Data*> _list;
}
QML main(显示数据列表)
ApplicationWindow
{
id: mainWindowContainer
width: 800
height: 500
ListView
{
id: dataList
delegate: Rectangle{
height: 10
width: 100
Text{text: name}
}
model: controller.list // <-- what data type are the list items here?
}
Button
{
id: btnOpen
text: "open selected Data in the DataViewer"
onClicked{
// what data type is dataList.currentItem and dataList.currentItem.modelData?
var dataViewer = Qt.createComponent("DataViewer.qml").createObject(mainWindowContainer, {data: dataList.currentItem.modelData});
dataViewer.show()}
}
}
QML DataViewer(显示数据并将其返回给控制器)
Window
{
height: 400
width: 800
property variant data // <--- tried 'property Data data', but did not work
TextArea
{
text: data.name
}
Button
{
id: btnReturn
text: "return to controller"
onClicked: {controller.takeThisOne(data)} // <--- does not work
}
}
我希望这个示例代码是可以理解的。谢谢你的帮助!
编辑:
我正在主要做qmlRegisterType<Data>()
。还尝试了qmlRegisterType<Data>("stuff", 1, 0, "Data")
并将stuff 1.0
导入DataViewer。
问题是,我不知道我的数据在哪个数据类型的不同点:
Controller: list of Data*
QML main : list of ???
dataList.currentItem = ???
dataList.currentItem.modelData = ???
DataViewer: variant or Data (according to property type, but Data does not work)
Controller: obviously not Data* as hoped, but what else?
答案 0 :(得分:1)
我终于想出了如何做到这一点!诀窍是使用
{data: dataList.model[dataList.currentIndex]}
而不是main.qml中的{data: dataList.currentItem]}
或{data: dataList.currentItem.modelData]}
。虽然我仍然不知道使用了什么数据类型以及为什么currentItem似乎使用与model [dataList.currentIndex]不同的数据类型,但这非常有效!