Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access the QML object inside the Loader's sourceComponent?

Tags:

qt

qml

qtquick2

I may need to read or write to some of the properties of the Loader's sourceComponent from some outside function.

What is the way to access the property x of the object inside this Loader's sourceComponent?

 import QtQuick 2.0

 Item {
     width: 200; height: 200

     Loader {
         anchors.fill: parent
         sourceComponent: rect
     }

     Component {
         id: rect
         Rectangle 
         {
             width: 50
             height: 50
             color: "red"
             property int x
         }
     }
 }
like image 310
Aquarius_Girl Avatar asked Feb 06 '15 07:02

Aquarius_Girl


1 Answers

When you need to expose an inner object/property to the outside, you should create an alias to it.

import QtQuick 2.0

 Item {
     width: 200; height: 200
     property alias loaderItem: loader.item

     Loader {
         id: loader
         anchors.fill: parent
         sourceComponent: rect
     }

     Component {
         id: rect
         Rectangle 
         {
             width: 50
             height: 50
             color: "red"
             property int x
         }
     }
 }
like image 72
GrecKo Avatar answered Oct 14 '22 23:10

GrecKo