Re: [Interest] How to trust certificates for QWebPage

2014-05-27 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=digia@qt-project.org [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Windows version here. I don't have a Twitter account, but going to https://www.twitter.com in IE gives me no visible complaints

Re: [Interest] Design of 'pluginable' application

2014-05-27 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=digia@qt-project.org [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Of Graham Labdon Sent: Tuesday, May 27, 2014 9:41 AM To: Interest@qt-project.org Subject: [Interest] Design of 'pluginable'

Re: [Interest] Qt5 performance on imx6 with full hd

2014-05-27 Thread Jacob Kroon
Hi Gunnar, On Fri, May 23, 2014 at 11:39 AM, Gunnar Sletta gunnar.sle...@jolla.comwrote: On 23 May 2014, at 10:32, Jacob Kroon jacob.kr...@gmail.com wrote: Hi, I'm experimenting with a Qt application running on the Wandboards, at full hd resolution, 1920x1080x32. I have a static

Re: [Interest] Slow touchscreen (eGalax) response in QML using evdevtouch plugin and eglfs platform

2014-05-27 Thread Phil Hannent
Hi, I have had experience with touch screens. The best place to start in my view is looking at the number of events and their frequency from the device. In my experience some equipment slows down the number of events it generates as you perform more complex/faster movements. I was working on

[Interest] Google Glass

2014-05-27 Thread rpzrpz...@gmail.com
Has anybody built an Android app on QT 5.3X and run it on Google Glass? marco ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] dependent foo.cpp does not exist.

2014-05-27 Thread Thomas Sevaldrud
Hi, I'm getting these strange errors all the time when trying to build my projects now... I'm using shadow building and I get these dependent somefile.cpp does not exist. In some cases the problem goes away when deleting the entire build folder and re-configuring, but not always... I can't see

Re: [Interest] Qt 5 Plugins for iOS Android

2014-05-27 Thread Alex Leutgöb
Just wanted to let you guys know that we finally released some Qt 5 plugins for integrating third-party services to iOS Android apps: With the currently ongoing transition of V-Play Game Engine from Qt 4.8 to Qt 5.3 we also launched our existing plugins for monetization, ads and analytics as

Re: [Interest] dependent foo.cpp does not exist.

2014-05-27 Thread John Weeks
I forget the exact symptoms, be we've had strange problems like that if there are two different files in the project that have the same names. -John Weeks On May 27, 2014, at 7:50 AM, Thomas Sevaldrud tho...@silentwings.no wrote: Hi, I'm getting these strange errors all the time when

Re: [Interest] dependent foo.cpp does not exist.

2014-05-27 Thread Scott Aron Bloom
Try again. -Original Message- From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of John Weeks Sent: Tuesday, May 27, 2014 10:34 AM To: Interest@qt-project.org Subject: Re: [Interest] dependent

Re: [Interest] How to trust certificates for QWebPage

2014-05-27 Thread Thiago Macieira
Em ter 27 maio 2014, às 09:52:42, Tom Isaacson escreveu: Thanks for the constructive comments. We're not expecting to support a browser that can visit any website on the internet, just a small list that's relevant to our device, so I'm hoping this is more manageable. The problem is that I just

[Interest] Issue with stylesheet and palette()

2014-05-27 Thread Massimiliano Maini
Hi all, I've stumbled on a potential issue concerning the usage of stylesheets and QWidget::palette() (to get colors set by the stylesheet). In a nutshell, accessing palette() within the constructor of the object (e.g QWidget) does not work. I've described the issue fully here:

Re: [Interest] Qt 5 Plugins for iOS Android

2014-05-27 Thread Yang Fan
IMHO, push notification plugin is more useful. On Wed, May 28, 2014 at 12:00 AM, Alex Leutgöb a...@v-play.net wrote: Just wanted to let you guys know that we finally released some Qt 5 plugins for integrating third-party services to iOS Android apps: With the currently ongoing transition

Re: [Interest] Issue with stylesheet and palette()

2014-05-27 Thread Tony Rietwyk
Hi Max, In our Qt 4.8.6 app we use the Polish event to apply changes after the styles are set in our base window class: bool BaseForm::event(QEvent *event) { bool result = QDialog::event( event ); if (event-type() == QEvent::Polish) {