Re: [Interest] qmake exclude modules

2013-09-19 Thread Phil Hannent
Good morning, On 18 September 2013 15:48, Thiago Macieira thiago.macie...@intel.com wrote: On quarta-feira, 18 de setembro de 2013 13:46:28, Phil Hannent wrote: Ok, so I went digging into qt_lib_webkit.pri file and found: QT.webkit.depends = core gui network This one declares what your -I

Re: [Interest] Loading libraries from root folder

2013-09-19 Thread Konrad Rosenbaum
On Monday 09 September 2013 13:05:07 Till Oliver Knoll wrote: Using the rpath linker option with a /relative/ path like ./lib (relative to the binary) worked for me. So I don't quite follow the disadvantage Important note: relative rpathes are not relative to the executable, they are relative

[Interest] QSopedPointer crashes application at exit

2013-09-19 Thread Igor Mironchik
Hi. I wrote simple test application that reproduse my problem. The problem is in QScopedPointer at exit point inline T *data() const { return d; } method. Here is call stack: Qt5Widgetsd.dll!QScopedPointerQObjectData,QScopedPointerDeleterQObjectData ::data() Line 132C++

Re: [Interest] QSopedPointer crashes application at exit

2013-09-19 Thread Igor Mironchik
The problem is in QScopedPointer at exit point I don't think this has something to do with the QScopedPointer. The QApplication is object is destroyed before the static instance of your MainWindow is. The QWidget destructor however needs a QApplication instance (see stack frame #3). But

Re: [Interest] QSopedPointer crashes application at exit

2013-09-19 Thread Nils Jeisecke
On Thu, Sep 19, 2013 at 12:07 PM, Igor Mironchik igor.mironc...@gmail.com wrote: But in call stack I see that all d_tors() executed before QApplication::d_func() and then for some reasons executes QScopedPointer::data() !!! It's looks like a bug? Or I wrong? The QApplication object is

Re: [Interest] QtCreator with mercurial : hg pull/push not working

2013-09-19 Thread Etienne Sandré-Chardonnal
I have found the issue. QtCreator looks only for default path in project_dir/.hgrc But the file is often in project_dir/.hg/hgrc QtCreator should look in both Etienne 2013/9/18 Etienne Sandré-Chardonnal etienne.san...@m4x.org Dear all, I have the following problem with QtCreator and

[Interest] 2D Graphs Qt Module

2013-09-19 Thread Ramakanthreddy Kesireddy
Hi, Please let me know the Qt addon Module that needs to be looked into for 2D Graphs in Qt5..1.1. Thanks and Regards, Ramakanth DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain

Re: [Interest] on plugins and qtuiotouch

2013-09-19 Thread Casimiro, Daniel C CIV NUWC NWPT
I'm not sure about the spec. I've had this happening using Martin Kaltenbrunner's Java TUIO Simulator, although it doesn't seem to happen with TUIOPad for iOS. This shouldn't be a problem though, it's just that I took a day off and now I don't have access to my actual hardware :) I ended

Re: [Interest] on plugins and qtuiotouch

2013-09-19 Thread Andrea Franceschini
2013/9/19 Casimiro, Daniel C CIV NUWC NWPT daniel.casim...@navy.mil: I get a new session ID for each and every finger that makes contact with the screen. The session ID is constant for a particular finger until I lift if off the screen. A new session ID is assigned when that finger is placed

[Interest] 2D Graphs Qt Module

2013-09-19 Thread Ramakanthreddy Kesireddy
Hi, Please let me know the Qt addon Module that needs to be looked into for 2D Graphs in Qt5.1.1 Thanks and Regards, Ramakanth DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain

Re: [Interest] on plugins and qtuiotouch

2013-09-19 Thread Andrea Franceschini
2013/9/19 Andrea Franceschini therealmorph...@gmail.com: 2013/9/19 Andrea Franceschini therealmorph...@gmail.com: 2013/9/19 Casimiro, Daniel C CIV NUWC NWPT daniel.casim...@navy.mil: I just reread the specification and it looks like duplicate session IDs are allowed: I'll run some tests

Re: [Interest] on plugins and qtuiotouch

2013-09-19 Thread Casimiro, Daniel C CIV NUWC NWPT
2013/9/19 Andrea Franceschini therealmorph...@gmail.com: What I don't get now is: is your hardware giving you different session ids to every new object that comes in? How would you otherwise identify a trace, aka a sequence of touch points produced by the same finger continuously moving on

Re: [Interest] What is different with the eventloop if I am setting Qt::WindowModal on Mac?

2013-09-19 Thread Alex Malyushytskyy
As far as I understand application event loop is not running until modal widget event loop is running. Closing the widget will start application event loop and you get your message printed. It would be worth if widget delete itself on closing, then you would have a crush. I guess comment in