Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-30 Thread Yves Bailly
Le 27/09/2013 20:20, Thiago Macieira a écrit : On sexta-feira, 27 de setembro de 2013 13:44:23, Uwe Rathmann wrote: On Thu, 26 Sep 2013 14:13:33 -0400, K. Frank wrote: [...] The existence of 2 different systems is a problem of itself. The development is working on the QML side, while the

Re: [Interest] QGLWidget and OGL version 4.3 functions?

2013-09-30 Thread Yves Bailly
Le 29/09/2013 11:21, Sean Harmer a écrit : Hi, On 27/09/2013 07:35, Thomas Meyer wrote: Hi, is it possible to render in a QGLWidget with the OGL 4.3 functions? Yes but it is now recommended to use QWindow + QOpenGLContext for new code as QGLWidget will not see any further development.

Re: [Interest] logrotating qDebug

2013-09-30 Thread Francesco Lamonica
Hi Thiago, i am not sure i understand your response... if the problem was a file offest would not affect all the files and all the rotations? (there are any processes of the same app that have their outputs redirected to different files that are rotated) But only some of them show this behaviour

[Interest] iOS Guidlines and QML

2013-09-30 Thread raven-worx Software
Hi, i have a question to the Apple App Store Guidelines in conjunction with QML: I plan to write an iOS app that downloads a remote QML file which is the main part of the app from a remote webserver. As i read the Guidlines i stumbled upon the following rule which would interfer with that:

Re: [Interest] ssl socket still encrypted after disconnect

2013-09-30 Thread Francesco Lamonica
Hi Thiago, thanks for the reply, i'll file up a bug and try to create a small snippet. However, for the time being, is there an API to reset/set the SslMode to UnencryptedMode? or should i refactor my code to delete the SslSocket and create it from scratch? or.. any other ideas? thanks On Fri,

Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-30 Thread Thiago Macieira
On segunda-feira, 30 de setembro de 2013 08:52:37, Yves Bailly wrote: Sure some tweakings are needed here and there, because a mobile is not a desktop. But widgets are working fine despite some shortcomings, mostly related to the styles and stylesheets management in my case, which are also

Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-30 Thread Philipp Kursawe
Well, at least the QComboBox in QML is a big joke (on the desktop). It usese a popup menu which is slow as hell and unscrollable with more than 10 entries. QML has to go a lng way until it works on the Desktop On Mon, Sep 30, 2013 at 9:54 AM, Thiago Macieira thiago.macie...@intel.com wrote:

[Interest] Qt on PS4 and SteamOS

2013-09-30 Thread Николай Шатохин
Hello. Can I use Qt5 and QML for game developing for PS4 and SteamOS? Best regards, Nick ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QGLWidget and OGL version 4.3 functions?

2013-09-30 Thread Sean Harmer
Hi, On Sunday 29 September 2013 16:12:48 Thomas Meyer wrote: thank you very much! You're welcome. (I have read your 5 parts article: http://www.kdab.com/opengl-in-qt-5-1-part-1/ and tried the terrain_tessellation project http://www.kdab.com/~sean/terrain_tessellation.zip [awesome]) I

[Interest] QtQuickControls in Qt5.2 alpha

2013-09-30 Thread Ramakanthreddy Kesireddy
Hi, Please let me know if QtQuick controls in Qt5.2 alpha work for other platforms(like embedded linux) as well including Desktop operating systems? Thanks and Regards, Ramakanth DISCLAIMER: This email (including any attachments) is intended for the sole

Re: [Interest] QImage, multithreaded app.

2013-09-30 Thread Christian Dähn
Hi, as Thiago already stated there are no limitations using QImages inside multithreaded apps. Why do I know this? Because I'm developing and using an industrial image processing framework with massively multithreaded image processing based on QThread and QImage. So I fear that you have some

[Interest] qrgexpvalidator and qregexp

2013-09-30 Thread Alexander Syvak
Hi, compiling the line QRegExpValidator valtor(QRegExp([1-9][0-9]*)); yields an error: no matching function for call to QRegExpValidator::QRegExpValidator(QRegExp). It's done on openSUSE. On Win7 it's compiled successfully. Where is the gist? ___

Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-30 Thread André Pönitz
On Fri, Sep 27, 2013 at 11:20:24AM -0700, Thiago Macieira wrote: Every year in the Qt Developer Days plenary sessions, the audience asked for more bugfixing, fewer new features, and definitely no regressions. We listened. So instead of breaking QtWidgets by refactoring it, we kept it as-is,

Re: [Interest] iOS Guidlines and QML

2013-09-30 Thread Paul Miller
On 9/30/2013 2:21 AM, raven-worx Software wrote: I plan to write an iOS app that downloads a remote QML file which is the main part of the app from a remote webserver. As i read the Guidlines i stumbled upon the following rule which would interfer with that: 2.7 Apps that download code in

Re: [Interest] iOS Guidlines and QML

2013-09-30 Thread Konstantin Tokarev
30.09.2013, 18:02, Paul Miller stel...@gmail.com: On 9/30/2013 2:21 AM, raven-worx Software wrote:  I plan to write an iOS app that downloads a remote QML file which is  the main part of the app from a remote webserver. As i read the  Guidlines i stumbled upon the following rule which would

[Interest] [QSS] Treeview headache

2013-09-30 Thread Clément Geiger
Hi there, I'm stumbling on a very frustrating problem here with QSS. My problem in a nutshell: I want to add a highlight on hover effect on QAbstractItemView-based classes. So I wrote that in the app's qss file: QAbstractItemView::item:hover:!selected { background: qlineargradient(x1: 0,

Re: [Interest] QGLWidget and OGL version 4.3 functions?

2013-09-30 Thread Sean Harmer
On Monday 30 September 2013 17:15:12 Thomas Meyer wrote: In all seriousness, unless you actually enjoy resolving function pointers I would just use QOpenGLFunctions_4_3_Core. It will make your life much easier. That's true! I have replaced the typedef's to bind a VAO with: ... uintvao;

Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-30 Thread Thiago Macieira
On segunda-feira, 30 de setembro de 2013 15:47:07, André Pönitz wrote: People did not ask for replacing a well-known standardized language with established development and deployment processes by some ad-hoc domain specific language without similar provisions. People did not ask to shift their

[Interest] Multiple plugin versions behavior with QPluginLoader

2013-09-30 Thread BOUCARD Olivier
Hi guys, I just need some clarification on how QPluginLoader behaves. Let say I have an application X which load plugins using QPluginLoader. I have a plugin MyPlugin in two different versions stored in two different folders A and B. I first start an instance of X using MyPlugin from folder A.

Re: [Interest] QSettings possible bug on Windows

2013-09-30 Thread Alex Malyushytskyy
Thanks Scott for advices, - 10 times checked that there was no typo qdesktopservices do not provide path to common application data folder, only to user specific. Reason I guess that there is no such concept on unix derived systems. I finally did write an extension to it which on Windows

Re: [Interest] QSettings possible bug on Windows

2013-09-30 Thread Scott Aron Bloom
I had to extend desktop services out of the UI library... From: Alex Malyushytskyy [mailto:alexmal...@gmail.com] Sent: Monday, September 30, 2013 9:30 PM To: Scott Aron Bloom Cc: interest@qt-project.org Subject: Re: [Interest] QSettings possible bug on Windows Thanks Scott for advices, - 10

[Interest] Dynamic translation using Qt Quick 2.x in Qt5.1.1

2013-09-30 Thread Ramakanthreddy Kesireddy
Hi, I would like to know if it is possible to update the text dynamically for any locale change in QtQuick(QML) using Qt5.1.1. Br, Ramakanth DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and