Re: [Interest] QML id property to string?

2016-03-10 Thread Jérôme Godbout
ent:* Thursday, March 10, 2016 at 1:10 PM > *From:* "Jérôme Godbout" <jer...@bodycad.com> > *To:* "Jason H" <jh...@gmx.com> > *Cc:* "Dmitry Volosnykh" <dmitry.volosn...@gmail.com>, " > interest@qt-project.org" <interest@qt-proj

Re: [Interest] QML id property to string?

2016-03-10 Thread Jason H
olosnykh" <dmitry.volosn...@gmail.com>, "interest@qt-project.org" <interest@qt-project.org> Subject: Re: [Interest] QML id property to string? Another useful one:   Q_INVOKABLE QString MySingleton::ownership( QObject * object ) const { auto ownership = QQmlEngine::cont

Re: [Interest] QML id property to string?

2016-03-10 Thread Jérôme Godbout
Jerome > > On Thu, Mar 10, 2016 at 12:45 PM, Jason H <jh...@gmx.com> wrote: > >> Yes, Ideally what I want: >> 1. Be able to get object id as string >> 2. Search the object heirarchy for that string and get that object >> >> *Sent:* Thursday, March 10, 2016 a

Re: [Interest] QML id property to string?

2016-03-10 Thread Jérôme Godbout
"Jason H" <jh...@gmx.com>, "interest@qt-project.org" < > interest@qt-project.org> > *Subject:* Re: [Interest] QML id property to string? > I feel the same need frequently, too. Without such feature I have to set > objectName by copy-pasting and qouting id

Re: [Interest] QML id property to string?

2016-03-10 Thread Jason H
om>, "interest@qt-project.org" <interest@qt-project.org> Subject: Re: [Interest] QML id property to string? I feel the same need frequently, too. Without such feature I have to set objectName by copy-pasting and qouting id. This is quite annoying.   On Thu, Mar 10, 2016 at 8:08 PM

Re: [Interest] QML id property to string?

2016-03-10 Thread Dmitry Volosnykh
I feel the same need frequently, too. Without such feature I have to set objectName by copy-pasting and qouting id. This is quite annoying. On Thu, Mar 10, 2016 at 8:08 PM Jason H wrote: > A few times now, I've wanted to display the id as a string. Usually when > something goes

[Interest] QML id property to string?

2016-03-10 Thread Jason H
A few times now, I've wanted to display the id as a string. Usually when something goes wrong on the console, but sometimes in a hash/map. I've got a function that takes an object (QML item) and does some processing on it. Is there a way to get it? I know I can just set a property, but then