Re: [Interest] QListView: drag custom item

2016-08-17 Thread André Somers
Op 16/08/2016 om 09:26 schreef Frank Rueter | OHUfx: Hi, I am trying to get drag to work between two QListViews using a custom item. I can't find the info I need online other than this document which helped a little bit but now I'm

Re: [Interest] qt5-gstreamer

2016-08-17 Thread Denis Shienkov
Hi, It of course is good... But, IMHO, qt5-gstreamer [1] has following cons: 1. It has not QMake project file, instead it has CMake project file. 2. It required boost. It doesn't allow to use qt5-gstreamer for embedded devices. On some devices just there is no boost in repositories and I need

[Interest] try to impove example/doc/tuto for qt5-gstreamer

2016-08-17 Thread Jerome
Hi, There is no doc, no manual, no tutorial, no example for qt5-gstreamer (or no one know where is some). Then because of that, i started a new public little project for provide example of use of qt5-gstreamer with Qt5 for C++ QWidget code. This porject want to use qt5-gstreamer for show video

[Interest] qt5-gstreamer

2016-08-17 Thread Jérôme Lanteri
Hi, There is no doc, no manual, no tutorial, no example for qt5-gstreamer (or no one know where is some). Then because of that, i started a new public little project for provide example of use of qt5-gstreamer with Qt5 for C++ QWidget code. This porject want to use qt5-gstreamer for show video

Re: [Interest] QListView: drag custom item

2016-08-17 Thread Frank Rueter | OHUfx
Thanks, but that still causes the default drag behaviour to drop a QStandardItem rather than the subclassed custom item that was dragged. It's not the data that is the issue but the class type itself. I have now refactored my code to use QStdandardItem instead of a custom one which makes it

Re: [Interest] Qt Android Service example

2016-08-17 Thread Nuno Santos
I have come across this page by searching in google for qt android service but this isn’t a complete example... > On 17 Aug 2016, at 19:56, Jason H wrote: > > Should be, only since 5.7 > http://doc.qt.io/qt-5/androidservices.html > > Sent: Wednesday, August 17, 2016 at 1:02 PM

Re: [Interest] Qt 5.8 failed to build on Windows: EGL/egl.h: No such file or directory

2016-08-17 Thread Thiago Macieira
On terça-feira, 16 de agosto de 2016 17:41:27 PDT Émeric MASCHINO wrote: > Hi, > > Does anybody had success building Qt 5.8.0-alpha latest snapshot [1] on > Windows? Following advice in [2], I've configured my build with: > > c:\qt\qt5.8.0\configure -opengl dynamic > > However, I'm getting

Re: [Interest] Qt Android Service example

2016-08-17 Thread Jason H
Should be, only since 5.7 http://doc.qt.io/qt-5/androidservices.html   Sent: Wednesday, August 17, 2016 at 1:02 PM From: "Nuno Santos" To: "Qt Project MailingList" Subject: [Interest] Qt Android Service example Hi,   Is there any public

[Interest] Qt Android Service example

2016-08-17 Thread Nuno Santos
Hi, Is there any public example on how to do a Qt Android Service? Thanks, Regards, Nuno ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Passing QML mapobjects (MapCircle) to QML maps through C++

2016-08-17 Thread Jason H
"Do not try and bend the spoon, that's impossible. Instead, only try to realize the truth...there is no spoon. Then you will see it is not the spoon that bends, it is only your self that bends" - Spook Kid, The Matrix   QML is not a language. It is ECMA Script (_javascript_) implemented by a an

Re: [Interest] Qt 5.8 failed to build on Windows: EGL/egl.h: No such file or directory

2016-08-17 Thread Émeric MASCHINO
While pablo [1] didn't help, using headers from the AMD OpenGL ES SDK kit [2] allowed me to successfully build Qt 5.8.0 alpha on Windows. Still I don't know if (i) requiring external headers is expected and (ii) whether it's the right way to go with this problem or not (I didn't check successful

[Interest] Qt Android / InputMethod / Instrumentation Fake Keyboard Input

2016-08-17 Thread Nuno Santos
Hi, One of my apps is an audio app. As many know, Android has audio problems. One of the hacks used to avoid glitching and crackling in the sound is to fake user input to avoid CPU frequency downscaling. This hack raises another problem. When I tap on a TextInput the Android keyboard pops

Re: [Interest] QListView: drag custom item

2016-08-17 Thread Viktor Engelmann
The QStandardItem seems to be used to limit the drag to files, images, text etc. so that you can drag & drop from and to external applications (which is not possible for general objects). http://doc.qt.io/qt-4.8/qstandarditem.html#subclassing says you should subclass QStandardItem and override