Re: [Interest] Unable to drag scrollbar in scroll area in Qt 5.6.3 widgets application

2020-11-23 Thread Thiago Macieira
On Monday, 23 November 2020 21:32:10 PST Ramakanth Kesireddy wrote: > UI Application is Qt 5.6.3 widgets based on 4.14 linux kernel built with > yocto meta-qt5 recipes. Please retest with the latest first (latest Qt and latest Yocto). And if you're not using X11, please be explicit on what backen

[Interest] Unable to drag scrollbar in scroll area in Qt 5.6.3 widgets application

2020-11-23 Thread Ramakanth Kesireddy
Hi, UI Application is Qt 5.6.3 widgets based on 4.14 linux kernel built with yocto meta-qt5 recipes. For all different views like QTableView,QTreeView, am using the inbuilt QScrollBar. The mouse wheel works, the up and down arrows on the scroll bar work, but unable to drag the scroll bar using t

[Interest] Qt Widgets on Windows: set parent window, but NOT on top?

2020-11-23 Thread David M. Cotter
i have a main window with the menu bar then a secondary, separate window. since i want both windows to come to front when the user switches into it, and i also want the key shortcuts from the menubar to function in the second window, i set the parent of the 2nd window to the main window. doing

Re: [Interest] how to get and purge events from queue?

2020-11-23 Thread David M. Cotter
that is exactly what i did and it worked like a charm. > On Nov 23, 2020, at 10:25 AM, Matthew Woehlke > wrote: > > On 05/11/2020 12.24, Jérôme Godbout wrote: >> Maybe you can add an event filter and remove some of the events if >> they are happening too close to each others. But I thing doing

Re: [Interest] How to expose a ‘index’ property to a delegate?

2020-11-23 Thread Nicolas Ulrich
I had a similar issue a long time ago and I didn't want to spend much time so I used an ugly workaround. I'm interested in the proper solution, but this works https://github.com/fferri/qt3d-thing/pull/1 I think Qt 3d needs a proper "Loader" (so you can do something like this https://doc.qt.io/qt-

[Interest] Customizing the output library name in Android builds

2020-11-23 Thread Rob Allan
We're in the process of migrating our Android builds from Qt 5.13.0 to 5.15.1. Something that has changed between these two versions is the default naming scheme for target libraries built using qmake. In our .pro file, we specify (for example): TARGET = MyLibrary In Qt 5.13.0, this produced an o

Re: [Interest] how to get and purge events from queue?

2020-11-23 Thread Matthew Woehlke
On 05/11/2020 12.24, Jérôme Godbout wrote: Maybe you can add an event filter and remove some of the events if they are happening too close to each others. But I thing doing that logic into the event handler is a betetr idea, where you can either cumulate and delay execution of the behavior. This.

Re: [Interest] How to expose a ‘index’ property to a delegate?

2020-11-23 Thread Federico Ferri
I pushed these files and the QtC project to https://github.com/fferri/qt3d-thing On 23 November 2020 at 17:49:17, Federico Ferri (federico.ferri...@gmail.com) wrote: Following your advice, I changed Array.qml to the following: (most notably: added the repeater.model property alias) […] Cheers,

Re: [Interest] How to expose a ‘index’ property to a delegate?

2020-11-23 Thread Federico Ferri
Following your advice, I changed Array.qml to the following: (most notably: added the repeater.model property alias) Entity { id: root property alias model: repeater.model property int length: 1 property Transform transform: Transform {} property Component itemDelegate

Re: [Interest] How to expose a ‘index’ property to a delegate?

2020-11-23 Thread Giuseppe D'Angelo via Interest
Il 23/11/20 14:20, Federico Ferri ha scritto: but of course in this example it is using a non-existent ‘index’ in the PhongMaterial.diffuse binding. Are you sure it's non-existing? The context in which that delegate is going to be created should have "index" injected into it. Needless to s

[Interest] How to disable "Semantic Issue" marker in qtcreator ?

2020-11-23 Thread Martin Koller
Hi, I'm using qtcreator only for debugging. I always get "Semantic issue" markers beside the source code line numbers, which interferes with the breakpoint markers. See attached screenshot. One can not easily see what is a breakpoint. I want to get rid of the display of the "Semantic issue" marke

[Interest] How to expose a ‘index’ property to a delegate?

2020-11-23 Thread Federico Ferri
Consider a “basic” usage of NodeInstantiator: NodeInstantiator { delegate: Entity { components: [SphereMesh {radius: index / 10}] } } We can use the ‘index’ property in delegate’s properties bindings. Now consider this custom Qt3D Entity (Array.qml, repeats the delegate n ti

[Interest] Multi-threading design along with an undo/redo stack

2020-11-23 Thread Megidd Git
Can anybody take a look at this question: https://stackoverflow.com/q/64964751/3405291 Thanks ☺ ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest