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

2020-11-26 Thread Ramakanth Kesireddy
Ok Thanks all for your feedback. The issue is resolved. Best Regards, Ramakanth On Tue, 24 Nov, 2020, 21:31 Ramakanth Kesireddy, wrote: > Looks like it is fixed in Qt5 as it receives QMouseMove unlike in Qt 4.8. > > On Tue, 24 Nov, 2020, 16:23 Volker Hilsheimer, > wrote: > >> Drag events are r

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

2020-11-24 Thread Ramakanth Kesireddy
Looks like it is fixed in Qt5 as it receives QMouseMove unlike in Qt 4.8. On Tue, 24 Nov, 2020, 16:23 Volker Hilsheimer, wrote: > Drag events are related to Drag’n’Drop, and you rarely drag from or drop > onto a scroll bar. > > The Qt documentation is quite clear about the role of those event ty

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

2020-11-24 Thread Volker Hilsheimer
Drag events are related to Drag’n’Drop, and you rarely drag from or drop onto a scroll bar. The Qt documentation is quite clear about the role of those event types, I think: https://doc.qt.io/qt-5/qevent.html#Type-enum https://doc.qt.io/qt-5/qdropevent.html Volker > On 24 Nov 2020, at 11:48

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

2020-11-24 Thread Ramakanth Kesireddy
One question..Found dragging scrollbar triggers MouseMove instead of drag events..When we drag scrollbar, is it expected to trigger DragEnter,DragMove,DragLeave instead(as verified in the event filter) in the custom QTableView which sets QScrollbar? Best Regards, Ramakanth On Tue, 24 Nov, 2020, 1

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

2020-11-24 Thread Ramakanth Kesireddy
Below is the configure line and output on X11(Ubuntu) ./configure -platform linux-g++-32 -opensource -confirm-license -system-zlib -system-libjpeg -system-libpng -system-sqlite -qt-xcb -no-cups -no-opengl -no-qml-debug \ -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcanvas3d -skip qt

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

2020-11-24 Thread Ramakanth Kesireddy
Sure.. Thanks for your mail. Shall test on the latest Qt. The issue is reproduced on both X11(ubuntu desktop) and linuxFB with tslib as backend. On Tue, 24 Nov, 2020, 13:16 Thiago Macieira, wrote: > On Monday, 23 November 2020 21:32:10 PST Ramakanth Kesireddy wrote: > > UI Application is Qt 5.6.

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