Re: [Interest] Project structure for multi-platform mobile devices

2014-04-23 Thread Alan Alpert
On Wed, Apr 23, 2014 at 1:18 AM, Luca Bonifacio wrote: > Hi everyone > > > > Actually, I’m getting serious problems by setting up a Qt/QML project > integrating also unit tests for a multi-platform mobile application. The > idea is to set up a project skeleton for the development of applications,

Re: [Interest] Is there a way to figure out QGraphicsSceneEvent's sender?

2014-04-23 Thread Thiago Macieira
Em qua 23 abr 2014, às 12:48:12, Dmitrii Volosnykh escreveu: > See subject. I mean something similar to QObject's sender() method. Events don't have senders. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center __

Re: [Interest] Failed to fetch Nokia Map using QtLocation

2014-04-23 Thread Ramakanthreddy Kesireddy
I tried with whatever suggested but it gives the below error. Not sure if system proxy is causing below issue. Setting proxy to "system" Setting proxy to "system" Setting proxy to "system" Failed to read nokia map version QGeoTileRequestManager: Failed to fetch tile (473,296,9) 5 times, giving

Re: [Interest] Failed to fetch Nokia Map using QtLocation

2014-04-23 Thread Blasche Alexander
What exactly is your network error? I am sure it is not exactly "cannot connect to nokia.com" as that would be too obvious but more details might help. In any case I cannot reproduce this error using the mapviewer example. Could you please run the following commands: export NOKIA_APPID= export

Re: [Interest] Is there a way to figure out QGraphicsSceneEvent's sender?

2014-04-23 Thread Dmitrii Volosnykh
I am re-sending QGraphicsSceneMouseEvents from children to parent and would like to know which child it came from. So (as per semantic) the so-called sender is not widget, but QGraphicsItem. I was thinking that QGraphicsItems may send events between each other, but apparently they are not. Now I a

Re: [Interest] Is there a way to figure out QGraphicsSceneEvent's sender?

2014-04-23 Thread Jonathan Greig
Whats wrong with using QGraphicsSceneEvent::widget() ? On Wed, Apr 23, 2014 at 3:48 AM, Dmitrii Volosnykh < dmitrii.volosn...@gmail.com> wrote: > See subject. I mean something similar to QObject's sender() method. > > Regards. > > ___ > Interest mailin

[Interest] Is there a way to figure out QGraphicsSceneEvent's sender?

2014-04-23 Thread Dmitrii Volosnykh
See subject. I mean something similar to QObject's sender() method. Regards. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Project structure for multi-platform mobile devices

2014-04-23 Thread Luca Bonifacio
Hi everyone Actually, I'm getting serious problems by setting up a Qt/QML project integrating also unit tests for a multi-platform mobile application. The idea is to set up a project skeleton for the development of applications, which will run on Android and iOS; and at the same time, the uni