[Interest] [Qt3D] Logic aspect hangs on exit

2015-12-16 Thread Nye
Hello, It seems for some reason that adding a logic aspect to the aspect engine causes the application to "hang" on exit. My guess is that for some reason the shutdown sequence is not executing properly and the threads in the pool are left in waiting. Is there currently a workaround for that (i.e.

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 12:27:28 Matthew Woehlke wrote: > Well, you mentioned toLocalFile, so I assume you already know that "trim > it" should actually use that. Also: > > if (uri.scheme() == "file") Better: if (uri.isLocalFile()) QUrl caches internally whether the scheme() is "

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 17:33:54 Jason H wrote: > Why isn't there a *static* QUrl::toLocalFile()? Why would you need one? QUrl("file:///tmp/Mambo %235.mp3?seek=60").toLocalFile() == QString("/tmp/Mambo #5.mp3") -- Thiago Macieira - thiago.macieira (AT) int

[Interest] qmake.exe -query gets stuck

2015-12-16 Thread qt
Hello there, [System Windows7 64bit] I just tried to install Qt(32bit) for a less knowledgable person and utterly failed. Installation went successfull. At the end the installer offered to start QtCreator for us. We said sure and it did. However we never saw Qt Creator. The task manager showed it

[Interest] How to deploy qtwebengine_resources_100p.pak on Windows

2015-12-16 Thread Glenn Ramsey
Hi, I am attempting to create a PyInstaller build for a PyQt application that uses QtWebEngine on Windows. I have this mostly working but scroll bars in the QtWebEngine window are red. This is apparently caused by the lack of the files qtwebengine_resources_100p.pak and qtwebengine_resources_200p.

[Interest] QWebEngineView not loading pages from history

2015-12-16 Thread Mike Jackson
I have an small app that uses QWebEngineView to display web pages. We have tried hooking up a pair of QPushButtons to invoke the forward and back in the QWebEngineHistory but neither seem to work. The QActions are getting triggered and our code is correctly calling them but the QWebEngineView do

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Giuseppe D'Angelo
On Wed, Dec 16, 2015 at 8:23 PM, Jason H wrote: > It means that I would not have to have an instance of a QUrl class. Currently > I'd have to do: > QUrl url(string); > return url.toLocalFile(); > > Why can't I just do QUrl::toLocalFile(string) I shouldn't need an instance to > strip file:// if i

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Jason H
> Well, you mentioned toLocalFile, so I assume you already know that "trim > it" should actually use that. Also: > > if (uri.scheme() == "file") > > > Why isn't there a *static* QUrl::toLocalFile()? > > What would that mean? A URI can be converted to a local file name. What > input would you

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Edward Sutton
On Dec 16, 2015, at 11:18 AM, rpzrpz...@gmail.com wrote: On 12/16/2015 10:38 AM, Edward Sutton wrote: On Dec 16, 2015, at 8:49 AM, rpzrpz...@gmail.com wrote: I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins +

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Matthew Woehlke
On 2015-12-16 11:33, Jason H wrote: > I continually run into situations in QML where I'm being given a Url. > Normally these are file://... When I take my C++ api, expose it to > QML and pass these values from QML to the C++ api, things don't work, > and as a result I have to add if (filename.start

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread rpzrpz...@gmail.com
On 12/16/2015 10:38 AM, Edward Sutton wrote: On Dec 16, 2015, at 8:49 AM, rpzrpz...@gmail.com wrote: I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins + Docker sounds interesting. I assume one advantage is it is light weight compared to having to store a bunch of lar

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Edward Sutton
> On Dec 16, 2015, at 8:49 AM, rpzrpz...@gmail.com wrote: > > I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins + > Docker sounds interesting. I assume one advantage is it is light weight > compared to having to store a bunch of large VM images? Can Docker be used to >

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Gianluca
Hello Jason H, I agree with you. I got the same problem you got a lot of times. There is a clearly incongruence and came out when you try to pass thing between Qt C++ to/from QML. I really hope that Qt developers fix all these issues of passing URL around all Qt C++ classes and QML items. Ciao,

[Interest] file:// is harshing my zen

2015-12-16 Thread Jason H
I continually run into situations in QML where I'm being given a Url. Normally these are file://... When I take my C++ api, expose it to QML and pass these values from QML to the C++ api, things don't work, and as a result I have to add if (filename.startsWith("file://")) {..trim it...} everywhe

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 10:33 AM, Jan Dasselaar wrote: On 16-12-2015 16:16, Duane wrote: On 16/12/2015 9:24 AM, André Somers wrote: Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog.

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Jan Dasselaar
On 16-12-2015 16:16, Duane wrote: On 16/12/2015 9:24 AM, André Somers wrote: Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box.

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Giuseppe D'Angelo
Il 16/12/2015 14:10, Duane ha scritto: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? Where are you doing that findChild? A non-native QFileDialog is lazily populated. T

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 9:24 AM, André Somers wrote: Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() w

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Fathi Boudra
On Wed, Dec 16, 2015 at 4:49 PM, rpzrpz...@gmail.com wrote: > I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins + > Docker sounds interesting. I assume one advantage is it is light weight > compared to having to store a bunch of large VM images? Can Docker be used > to dep

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread rpzrpz...@gmail.com
I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins + Docker sounds interesting. I assume one advantage is it is light weight compared to having to store a bunch of large VM images? Can Docker be used to deploy OS X Xcode and Windows Visual Studio build slaves? Or is the

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread André Somers
Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? XY problem. Why do you n

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 8:14 AM, André Somers wrote: Op 16/12/2015 om 14:10 schreef Duane: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? Are you sure you are not getting a nativ

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 08:10:44 Duane wrote: > I'm subclassing a QFileDialog. I need to get a pointer to the filename > box. I was doing this with findChild() with Qt4 but with > Qt5 this returns null. Any suggestions? XY problem. Why do you need to get the pointer to the line edit? Wha

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Edward Sutton
> On Dec 16, 2015, at 1:34 AM, Fathi Boudra wrote: > > On Tue, Dec 15, 2015 at 4:27 PM, Bo Thorsen wrote: >> Den 11-12-2015 kl. 09:16 skrev Sarajärvi Tony: >>> I cannot find any reference to "Coin CI". Is this an open >>> source or commercial tool? A Qt internal tool? >>> >>> Internal too

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread André Somers
Op 16/12/2015 om 14:10 schreef Duane: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? Are you sure you are not getting a native file dialog? If so, then obviously there

[Interest] QFileDialog Qt5

2015-12-16 Thread Duane
I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/m

Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread rpzrpz...@gmail.com
On 12/16/2015 1:34 AM, Fathi Boudra wrote: On Tue, Dec 15, 2015 at 4:27 PM, Bo Thorsen wrote: Den 11-12-2015 kl. 09:16 skrev Sarajärvi Tony: > I cannot find any reference to "Coin CI". Is this an open source or commercial tool? A Qt internal tool? Internal tool created from nothing