qml动态创建组件对象

qml动态创建组件对象,使用分离js文件,动态销毁对象,属性别名等。
代码:
main.cpp

#include <QGuiApplication>
#include <QQuickView>

int main(int argc, char *argv[])
{
    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
    QGuiApplication app(argc, argv);

    QQuickView viewer;
    viewer.setSource(QUrl("qrc:/main.qml"));
    viewer.show();

    return app.exec();
}

main.qml

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
//导入分离js文件  MyJsFunc首字母必须大写
import "myJsFunc.js" as MyJsFunc

Rectangle
{
    id:rect
    visible: true
    width: 800
    height: 600
    Column
    {
        id:colume
        anchors.centerIn: parent
        spacing: 10
        //添加qml文件,但是注意的是文件名必须是大写,这是QT规定的,然后就可以在其他qml文件中使用了,不需要包含文件
        MyButton{text:"button1"}
        MyButton{text:"button2"}
        MyButton
        {
            text:"button3"
            //MyButton clicked信号对应的槽函数
            //这里不用写参数 xPos yPos
            onClicked:
            {
                console.log(text + " clicked at " + xPos + " " + yPos)
                //销毁对象
                destroy(5000)
            }
        }
        //动态创建组件
        Component.onCompleted:
        {
            //槽函数
            function fun(xPos,yPos)
            {
                console.log("clicked at " + xPos + " " + yPos)
            }
            //创建组件
            var component = Qt.createComponent("MyButton.qml")
            for(var i = 0;i < 3;++i)
            {
                //创建对象
                var sprite = component.createObject(colume,{text:"动态MyButton" + i})
                //链接信号和槽
                sprite.clicked.connect(fun)
                //动态销毁对象
                sprite.destroy(5000 * (i + 1))
            }
        }
    }
    //内联js函数
    function func(n)
    {
        if(n <= 1)
            return 1;
        else
            return n * func(n - 1)
    }
    //使用内联js函数
    //Component.onCompleted: console.log(func(5))
    //使用分离的js文件中的函数
    //启动时触发
    Component.onCompleted:console.log(MyJsFunc.func(6))
    //组件销毁时触发
    Component.onDestruction: console.log(MyJsFunc.func(5))
}

MuButton.qml

import QtQuick 2.7

Rectangle
{
    //设置btnText.text属性别名,为text,这样就能够在外部访问属性,方便编写控件模板
    property alias text: btnText.text
    width: 200
    height: 70
    color: "lightgray"
    border.color: "blue"
    border.width: 2
    radius: 12
    //定义信号
    signal clicked(int xPos,int yPos)
    Text
    {
        id: btnText
        font.family: "微软雅黑"
        font.pixelSize: 25
        color: "black"
        anchors.centerIn: parent
    }
    MouseArea
    {
        anchors.fill: parent
        //发送信号
        onClicked: parent.clicked(mouse.x,mouse.y)
    }
}

myJsFunc.js

//声明为无状态的库,只做计算,不能直接访问和修改qml组件
.pragma library
//js文件包含
//Qt.include("ssssss.js")

function func(n)
{
    if(n <= 1)
        return 1;
    else
        return n * func(n - 1)
}

效果:
这里写图片描述
代码:https://github.com/yangyang0312/cpp/tree/master/Qt/qml/DynamicCreateObj

  • 5
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值