Hi guys,
Thanks! Learned today something :)
Dylan
Original Message
Subject: Re: [SailfishDevel] Interact from other pages with the cover page
Local Time: August 29, 2016 2:38 PM
UTC Time: August 29, 2016 12:38 PM
From: m...@mattaustin.me.uk
To: dylan.van.ass
On 29 August 2016 at 20:29, Dylan Van Assche
wrote:
> If I understand it correctly I need to do the following things:
>
> Create an object in harbour-sailfinder.qml and give it an ID
> Call the object with that ID from my current page (for example:
> MainPage.qml) and assign some data to it.
> Rea
Properties of root object are accessible for it childrens. Childrens of
object are not accessible.
-- Исходное сообщение --
От: "Michael Fuchs"
Кому: devel@lists.sailfishos.org
Отправлено: 29.08.2016 19:21:15
Тема: Re: [SailfishDevel] Interact from other pages with the
sage
Subject: Re: [SailfishDevel] Interact from other pages with the cover page
Local Time: August 29, 2016 2:21 PM
UTC Time: August 29, 2016 12:21 PM
From: mic...@gmx.at
To: devel@lists.sailfishos.org
Correction in SomeWherElse.qml
Am 29.08.2016 um 14:19 schrieb Michael Fuchs:
> Hi Dylan,
>
&g
Dylan
Original Message
Subject: Re: [SailfishDevel] Interact from other pages with the cover page
Local Time: August 29, 2016 2:21 PM
UTC Time: August 29, 2016 12:21 PM
From: mic...@gmx.at
To: devel@lists.sailfishos.org
Correction in SomeWherElse.qml
Am 29.08.2016 um 14:19 schrieb
Correction in SomeWherElse.qml
Am 29.08.2016 um 14:19 schrieb Michael Fuchs:
Hi Dylan,
Children from ApplicationWindow are AFAIK accessible everywhere.
harbour-example.qml:
ApplicationWindow {
...
MyObject {
id: mo
someString: "Eins"
function test(){}
}
...
}
CoverPage.qml:
Hi Dylan,
Children from ApplicationWindow are AFAIK accessible everywhere.
harbour-example.qml:
ApplicationWindow {
...
MyObject {
id: mo
someString: "Eins"
function test(){}
}
...
}
CoverPage.qml:
CoverBackground {
CoverPlaceholder {
text: mo.someString
}
Please, describe what do you want to get?
2016-08-29 15:03 GMT+03:00 Dylan Van Assche :
> Hi devs,
>
> I'm rebuilding Sailfinder and I'm looking for a better way for my
> interaction between the cover and other pages.
> In the old version I let the cover play the man in middle when Python
> transf
Hi devs,
I'm rebuilding Sailfinder and I'm looking for a better way for my interaction
between the cover and other pages.
In the old version I let the cover play the man in middle when Python
transfered the data to the current QML page but it was a messy solution.
I looked at the source code of