Re: [Interest] QML/C++ interaction in Qt6

2020-09-14 Thread Ulf Hermann
On 9/14/20 5:29 PM, Jérôme Godbout wrote: Oh,... now that's a deal breaker... I guess I will have to stick with the old method for a while, having 1 plugins per modules to be expose will need some major refactor over here. I have subrepos who have a single .pri and might expose a few modules and

Re: [Interest] QLineEdit placeholder text Qt 5.6.3

2020-09-14 Thread Federico Ferri
https://stackoverflow.com/questions/50423658/qlineedit-paint-a-different-text-than-the-actual-text-placeholder-with-text-n/50425331#50425331 On 13 September 2020 at 14:00:02, Ramakanth Kesireddy (rama.k...@gmail.com) wrote: Hi, Am using Qt 5.6.3 widgets on embedded Linux. To display placeholde

Re: [Interest] QML/C++ interaction in Qt6

2020-09-14 Thread Jérôme Godbout
Oh,... now that's a deal breaker... I guess I will have to stick with the old method for a while, having 1 plugins per modules to be expose will need some major refactor over here. I have subrepos who have a single .pri and might expose a few modules and some modules are partials between subrepo

Re: [Interest] QML/C++ interaction in Qt6

2020-09-14 Thread Giuseppe D'Angelo via Interest
Il 14/09/20 15:54, Jérôme Godbout ha scritto: // how does the Person class is link to the People name exactly?!? QML_IMPORT_NAME does the link. The "equivalent" of registering a QML_ELEMENT class, using the syntax of old registrations is something like qmlRegisterType("QML_IMPORT_NAME"

Re: [Interest] QML/C++ interaction in Qt6

2020-09-14 Thread Jérôme Godbout
Hi, Thanks for the info, I did took a look at the QML_ELEMENT at https://www.qt.io/blog/qml-type-registration-in-qt-5.15 I was a bit confuse about how this actually do the the convertion between people and person in the following example given: *** qmlRegisterType("Peopl