[Development] A better headersclean test

2014-12-17 Thread Thiago Macieira
Hello all I've previously mentioned this, but I can't find the link in the archives. I've implemented a better headersclean check that can't be forgotten. You can find it at https://codereview.qt-project.org/45533 This email is to ask for when it should be enabled: Lars and Ossi in the mail di

Re: [Development] qmake vcxproj generator issue

2014-12-17 Thread Joerg Bornemann
On 17-Dec-14 16:10, raven-worx Software wrote: > i am using the command "qmake -tp vc -r" to generate Visual Studio projects. > With Qt 5.3 and MSVC2008 this worked flawlessly. > But since Qt 5.4 can't be compiled with MSVC2008 anymore i switched to > MSVC2013. What do you mean by "Qt 5.4 can't b

[Development] qmake vcxproj generator issue

2014-12-17 Thread raven-worx Software
Hi, i am using the command "qmake -tp vc -r" to generate Visual Studio projects. With Qt 5.3 and MSVC2008 this worked flawlessly. But since Qt 5.4 can't be compiled with MSVC2008 anymore i switched to MSVC2013. The command runs without errors and creates the .vcxproj files, so far so good. No

Re: [Development] Virtual keyboard

2014-12-17 Thread Helmut Mülner
> I have a virtual keyboard installed (Hot Virtual Keyboard) on Windows7. > I use qt-opensource-windows-x86-msvc2013-5.4.0. > In Qt Widget programs (e.g. from examples) the keyboard works as expected: > When I click into an editable text field, the keyboard pops up. > But this does not work

Re: [Development] Assistant documentation can not be copied anymore?

2014-12-17 Thread Bernhard
Thanks for the response and for taking care of this. In case you create an issue in the bug tracker please give me the link. -- Kind Regards Bernhard Lindner > -Ursprüngliche Nachricht- > Von: development-bounces+private=bernhard-lindner...@qt-project.org > [mailto:development-bounces+

Re: [Development] quickcontrols has now a hard dependancy on widgets.

2014-12-17 Thread deDietrich Gabriel
Qt Quick Controls do depend on QtWidgets because of styling on desktop. This may be solved in the future as we plan on having separate plugins for styles. (Notice that Qt Quick Controls are not integral part of Qt Quick but a separate module.) If you're writing an embedded app, then you most l

Re: [Development] tst_qwindow failing frequently in dev

2014-12-17 Thread Simon Hausmann
On Tuesday 16. December 2014 13.08.17 Thiago Macieira wrote: > On Wednesday 03 December 2014 12:14:26 Simon Hausmann wrote: > > I was able to reproduce this together with Jørgen and uploaded a > > prospective fix at > > > > https://codereview.qt-project.org/#/c/101345/ > > The fix seems to ha

Re: [Development] Assistant documentation can not be copied anymore?

2014-12-17 Thread Reinio Topi
Hi Bernhard, This change is in qdoc, the tool that generates the documentation. Zero-width-space characters are injected into the function signatures, allowing browsers to break up long signatures over multiple lines in a nice manner - this was made to improve the looks of the new online docum

[Development] Assistant documentation can not be copied anymore?

2014-12-17 Thread Bernhard
Hi! After searching for functions and features in Qt Assistant I used to copy code snippets (like function names, signatures etc.) from the Assistant pages. Starting with Qt5.4 that got pretty annoying. Still copied code looks perfectly fine but VS2013 Intellisense and compiler complain about st

Re: [Development] Qt Bugtracker update and new URL

2014-12-17 Thread Frederik Gladhorn
On Monday, December 15, 2014 02:10:15 PM Blasche Alexander wrote: > Hi, > > It is time to move the Qt bug tracker to its new home under qt.io. The new > URL is going to be: > > https://bugreports.qt.io > > The change is going to happen on Wed, 7. January 2015. To facilitate the > change the old

[Development] Virtual keyboard

2014-12-17 Thread Helmut Mülner
I have a virtual keyboard installed (Hot Virtual Keyboard) on Windows7. I use qt-opensource-windows-x86-msvc2013-5.4.0. In Qt Widget programs (e.g. from examples) the keyboard works as expected: When I click into an editable text field, the keyboard pops up. But this does not work in QML programs

Re: [Development] [QtIFW] Offline from online?

2014-12-17 Thread Koehne Kai
> -Original Message- > From: development-bounces+kai.koehne=theqtcompany.com@qt- > Subject: [Development] [QtIFW] Offline from online? > > Hi, QtIFW develooers!!! Hi, > What about creation offline installers based on shared in online repository > components? So far the IFW doesn't offer

Re: [Development] [Interest] Modifying QQmlFileSelector selector at runtime without Loader or Component

2014-12-17 Thread Jérôme Godbout
You may try to create the object dynamically based on the selector for the source and/or the properties. You could try Qt.createQmlObject() or Qt.createComponent() along createObject(). Your onSelectorChanged could delete previous instance if any and create a new one. https://qt-project.org/doc/qt-