BlinCT
BlinCTApril 3, 2021, 10:55 a.m.

Работа с созданным обьектом qml через Qt.createComponent

Всем привет.
Столкнулся с необходимостью в однмо случаи создавать обьект а в другмо нет.
Делаю так:

Component.onCompleted: {
        if(headers)
        {
            var component = Qt.createComponent("qrc:/Modules/Header.qml");

            if (component.status === Component.Ready)
            {
                component.createObject(parent);
            }
        }
    }

Но мне в этот обьект надо передавать разные проперти. Каким путем это делать?
Так же мне надо другим обьектам передавать по id этого обьекта расположение.
Посоветуйте как это делать)
Спасибо.

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

4
Serj Demchenko
  • April 9, 2021, 6:43 a.m.

примерно так

 Item {

 ...

 // мои проперти

 property point pointDrag
    property bool caught: false
    property var component
    property var sprite
    property int currentIndex
    property var dragtarget
    property bool isCanCreateObject: true

    MouseArea {
        id: mouseArea
        anchors.fill: submain
        drag.target: dragtarget
        hoverEnabled: true
        pressAndHoldInterval: 300
        onEntered: {
            mouseArea.cursorShape = Qt.CrossCursor
        }
        onExited: {
            mouseArea.cursorShape = Qt.ArrowCursor
        }
        onPressed: {
            main.pointDrag = Qt.point(main.x, main.y)
        }

        // sprite.destroy(spriteIndex)
        onDoubleClicked:{
            if(spriteIndex > 0) {
                objectsFrame.children[spriteIndex].destroy()
                spriteIndex --
            }

        }
        onPressAndHold: {
            if(isCanCreateObject) {
                component = Qt.createComponent("ModemObject.qml");
                sprite = component.createObject(objectsFrame);
                spriteIndex++
                sprite.x = mouseX; sprite.y = mouseY;
                sprite.currentIndex = spriteIndex
                console.log("index obj "+ spriteIndex)
                sprite.dragtarget = sprite  // доступ к проперти созданного обьекта
                sprite.isCanCreateObject = false
                sprite.z = parent.z
            }
        }
    }

    BlinCT
    • April 9, 2021, 8:15 a.m.

    Добрый день.
    И как это решает мою проблему?)

    Item
    {
        id: root
    
        property var  model
        property bool headers : false
        property string objectName
    
        property int iMaxWidthRow: 0
        property int iTempWidthRow: 0
    
        Component.onCompleted: {
            if(headers)
            {
    //            var component = Qt.createComponent("qrc:/Modules/Header.qml");
    
    //            if (component.status === Component.Ready)
    //            {
    //                component.createObject(parent);
    //            }
    
                Header.model = model
            }
    
    
        }
    
        Rectangle
        {
            id: header
    
            anchors.top: parent.top
            anchors.left: parent.left
            anchors.right: parent.right
            height: visible ? 35 : 0
            visible: root.headers
            enabled: !root.headers
    
            color: "transparent"
    
            Row
            {
                id: rowHeader
    
                anchors.top: parent.top
                anchors.left: parent.left
                anchors.right: parent.right
    
                Repeater
                {
                    id: headerRepeater
    
    //                model: root.model.headerModel 
    
                    Rectangle
                    {
                        id: rectHeader
    
                        color: "transparent"
                        width: root.model.getSizeLongString(model.index)
                        height: 22
                        anchors.verticalCenter: parent.verticalCenter
    
                        Text
                        {
                            width: 50
                            height: 35
    
                            anchors.fill: parent
                            anchors.leftMargin: 10
                            anchors.rightMargin: 10
                            font.pixelSize: 12
                            verticalAlignment: Text.AlignVCenter
                            color: "#EAEAEA"
    
                            text: root.model.headerData(modelData, Qt.Horizontal, "display")
                        }
                    }
                }
            }
    
            Rectangle
            {
                id: borderine
    
                anchors.top: rowHeader.bottom
                anchors.left: parent.left
                anchors.right: parent.right
    //            anchors.bottom: parent.bottom
    
                height: header.height * 0.1
    //            color: "#2C3033"
                color: "red"
            }
        }
    

    Проблема которую я пытаюсь решить выше. Отьект id: header это тот обьект который я думаю создавать динамически. То есть еали прилетает проперти headers то он создается. Ему я передаю другие проперти. Проблема в том что этот обьект имеет такую строку

    model: root.model.headerModel
    

    и для одних моделей такая переменная есть а для других нету. И я решил что весь обьект лучше создавать.
    Других вариантов решения проблемы я не нашел.
    Попытался через такой способ сделать

        onHeadersChanged: {
            if(headers)
            {
                headerRepeater.model = root.model.headerModel
            }
        }
    

    Вроде и логичный вариант, но почему то в одном месте этот обьект создается а в другом нет. А раньше все норм было.

      Serj Demchenko
      • April 12, 2021, 11:48 a.m.

      Попробуйте через Connections сделать.

        U
        • May 11, 2021, 7:56 a.m.
        • (edited)

        Вот так должно прокатить:
        component.createObject(parent, {"objectName": "VotEtoYaSozdal!!!"; "iMaxWidthRow": 100});

        Жаль правда, что месяц прошел с даты вопроса)

          Comments

          Only authorized users can post comments.
          Please, Log in or Sign up
          AD

          C ++ - Test 004. Pointers, Arrays and Loops

          • Result:50points,
          • Rating points-4
          m

          C ++ - Test 004. Pointers, Arrays and Loops

          • Result:80points,
          • Rating points4
          m

          C ++ - Test 004. Pointers, Arrays and Loops

          • Result:20points,
          • Rating points-10
          Last comments
          Evgenii Legotckoi
          Evgenii LegotckoiOct. 31, 2024, 2:37 p.m.
          Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
          A
          ALO1ZEOct. 19, 2024, 8:19 a.m.
          Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
          ИМ
          Игорь МаксимовOct. 5, 2024, 7:51 a.m.
          Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
          d
          dblas5July 5, 2024, 11:02 a.m.
          QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
          k
          kmssrFeb. 8, 2024, 6:43 p.m.
          Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
          Now discuss on the forum
          Evgenii Legotckoi
          Evgenii LegotckoiJune 24, 2024, 3:11 p.m.
          добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
          t
          tonypeachey1Nov. 15, 2024, 6:04 a.m.
          google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
          NSProject
          NSProjectJune 4, 2022, 3:49 a.m.
          Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…
          9
          9AnonimOct. 25, 2024, 9:10 a.m.
          Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

          Follow us in social networks