Re: [Interest] Logging meta call events

2015-02-18 Thread alexander golks
Am Tue, 17 Feb 2015 23:23:44 -0800 schrieb Thiago Macieira thiago.macie...@intel.com: On Wednesday 18 February 2015 07:59:09 alexander golks wrote: if you really want to log, why not just include the private header and do the logging? we do it in our derived q(core)application::notify, when

Re: [Interest] Can QML do this animation?

2015-02-18 Thread Mark Gaiser
On Wed, Feb 18, 2015 at 1:18 AM, Jason H jh...@gmx.com wrote: Yes, I think 80% of it is 100% do-able. Rotation defined by bytes receiced, with bounce easing. The only issue is the drain animation. I'd probably use Canvas and mathmatically define the position of a set of control points as a

Re: [Interest] Logging meta call events

2015-02-18 Thread Bernhard
but my point is, when he wants to use the private header, why not? Couldn't my code break easily? I have a bad feeling about this. But see my other mail. I had been trying this before writing to the mailing list but I failed with sender() crashes. -- Kind Regards Dipl. Ing. (FH) Bernhard

Re: [Interest] Logging meta call events

2015-02-18 Thread Bernhard
Meta call events only happen for queued slot deliveries. For direct deliveries, there's no event, so notify() will not be called. For those, you need to use the hooks that QSignalSpy uses. Well, since our state engines are completely driven by queued connections or events this would be no

[Interest] Displaying version in application.

2015-02-18 Thread Jason H
This is for mobile and QML. Is there a way to get the Android manifest XML and display it in the software automatically? Text { text: manifest.version } It would be cool to have a Manifest element or Application element ___ Interest mailing list

Re: [Interest] qtchooser and the current importance/interest of QTDIR?

2015-02-18 Thread René J . V . Bertin
On Wednesday February 18 2015 08:16:11 Thiago Macieira wrote: As for cmake, the answer is simple: they contain hardcoded absolute paths to the Qt tools inside the Qt prefix. Those tools are expected to remain where they are and not get renamed. They don't need the -qt5 argument because

[Interest] QT 5.4 and raspberry PI 2 - QML WebKit issues

2015-02-18 Thread Lionel CHAZALLON
Hello, I have recently built QT 5.4 on the new Raspberry Pi2, changing the qtbase/mkspecs/devices/linux-rasp-pi-g++/qmake.conf build flags which i had to adjust to : -marm -mfpu=neon -mtune=cortex-a7 -march=armv7-a -mabi=aapcs-linux That went fine and everything was generated without much

Re: [Interest] qtchooser and the current importance/interest of QTDIR?

2015-02-18 Thread Thiago Macieira
On Wednesday 18 February 2015 13:04:51 René J.V. Bertin wrote: On Tuesday February 17 2015 18:27:26 Nikos Chantziaras wrote: Hello, QTDIR isn't used anymore. If you want to install to different prefixes, just do so. No QTDIR needed. If you call the right qmake that was installed in the

Re: [Interest] Logging meta call events

2015-02-18 Thread Thiago Macieira
On Wednesday 18 February 2015 09:06:46 alexander golks wrote: but my point is, when he wants to use the private header, why not? Read it. There's an important comment at the beginning of every private header (enforced by our continuous integration system) explaining why you shouldn't do it. We

Re: [Interest] Logging meta call events

2015-02-18 Thread Thiago Macieira
On Wednesday 18 February 2015 10:16:36 Bernhard wrote: P.S. Do you think my issue is reasonable in a way that I should write a tracker suggestion asking for a public API? You may write the suggestion, but my feeling is that we will not implement it. Allowing for logging at this level is a

Re: [Interest] QsqlTableModel

2015-02-18 Thread Graham Labdon
There are no other queries -Original Message- From: Jason H [mailto:jh...@gmx.com] Sent: 18 February 2015 14:07 To: Graham Labdon Cc: Interest@qt-project.org Subject: Re: [Interest] QsqlTableModel From: Graham Labdon graham.lab...@avalonsciences.com Hi I am attempting to use

Re: [Interest] Can QML do this animation?

2015-02-18 Thread André Somers
Jason H schreef op 18-2-2015 om 15:03: Sent: Wednesday, February 18, 2015 at 5:44 AM From: Mark Gaiser mark...@gmail.com To: Qt Interest interest@qt-project.org Subject: Re: [Interest] Can QML do this animation? On Wed, Feb 18, 2015 at 1:18 AM, Jason H jh...@gmx.com wrote: Yes, I think 80%

Re: [Interest] QsqlTableModel

2015-02-18 Thread Jason H
From: Graham Labdon graham.lab...@avalonsciences.com Hi I am attempting to use QSqlTableModel to delete rows from an Sqlite database. - model-select(); bool b = model-removeRows(0,200); model-submitAll(); The return value is false, so I thought I would get the last

[Interest] Regarding cross-compilation of a database application for am335x evm board

2015-02-18 Thread Jha Sonakumar
Hi all, I am able to run a sample database application using sqlite on Desktop. If i try to cross-compile same code for am335x EVM board ,an error occurs ,which terminates compilation. Please find the below screenshot : [linux-devkit]:/home/sona/Desktop/HMIApp make arm-linux-gnueabihf-g++

Re: [Interest] qtchooser and the current importance/interest of QTDIR?

2015-02-18 Thread René J . V . Bertin
On Tuesday February 17 2015 18:27:26 Nikos Chantziaras wrote: Hello, QTDIR isn't used anymore. If you want to install to different prefixes, just do so. No QTDIR needed. If you call the right qmake that was installed in the prefix you want, all build paths will be correct for that prefix.

[Interest] QsqlTableModel

2015-02-18 Thread Graham Labdon
Hi I am attempting to use QSqlTableModel to delete rows from an Sqlite database. - model-select(); bool b = model-removeRows(0,200); model-submitAll(); The return value is false, so I thought I would get the last error using QSqlError e = model-lastError(); However,

Re: [Interest] Can QML do this animation?

2015-02-18 Thread Jason H
Sent: Wednesday, February 18, 2015 at 5:44 AM From: Mark Gaiser mark...@gmail.com To: Qt Interest interest@qt-project.org Subject: Re: [Interest] Can QML do this animation? On Wed, Feb 18, 2015 at 1:18 AM, Jason H jh...@gmx.com wrote: Yes, I think 80% of it is 100% do-able.  Rotation

Re: [Interest] Can QML do this animation?

2015-02-18 Thread Bo Thorsen
On 02/18/2015 11:44 AM, Mark Gaiser wrote: On Wed, Feb 18, 2015 at 1:18 AM, Jason H jh...@gmx.com mailto:jh...@gmx.com wrote: Yes, I think 80% of it is 100% do-able. Rotation defined by bytes receiced, with bounce easing. The only issue is the drain animation. I'd probably use

Re: [Interest] Logging meta call events

2015-02-18 Thread alexander golks
Am Wed, 18 Feb 2015 08:17:38 -0800 schrieb Thiago Macieira thiago.macie...@intel.com: On Wednesday 18 February 2015 09:06:46 alexander golks wrote: but my point is, when he wants to use the private header, why not? Read it. There's an important comment at the beginning of every private

[Interest] Fwd: Is there any trick to smooth the animation of PathView index changing ?

2015-02-18 Thread Denis Shienkov
Hi all. I want to make an animation when changing of currentIndex (by increment/decrement functions) causes the smooth PathView item changing. Besides, when animation starts, the items should be quickly animated, but during a some time, they should be more slowly and more slowly until the

[Interest] Qt::WA_NoMouseReplay? Extra mouse clicks during contextual menus.

2015-02-18 Thread John Weeks
We have code conceptually like this (but more complicated :) -- void MainWindow::mousePressEvent(QMouseEvent *e) { if (hotRect.contains(e-pos())) { QMenu aMenu(The Menu, 0); aMenu.addAction(Action 1); aMenu.addAction(Action 2);

Re: [Interest] Installer Recommendations

2015-02-18 Thread Jérôme Godbout
I up vote for wix, can integrate into Visual Studio and MSBuild. I use it with VS, MsBuild and Jenkins. Msi are still a pain (compared to rpm, debian package ) but at least the doc are ok and it's free. On Feb 18, 2015, at 8:31 PM, Pavel Koshevoy pkoshe...@gmail.com wrote: There may be

Re: [Interest] Installer Recommendations

2015-02-18 Thread Pavel Koshevoy
There may be easier ways to do this, but I am using WiX 3.5. I had to write a small program to invoke the Dependency Walker and parse its output to automatically discover dependencies of my executable. This is similar to what you would do with otool on OSX, or ldd on Linux. Then, given the

Re: [Interest] Installer Recommendations

2015-02-18 Thread Peter Lee
We use Innosetup ... pretty good covers all the points you have below except MSI, but there's a tool for that. http://www.jrsoftware.org/isinfo.php http://www.exemsi.com/inno-setup-and-msi Regards, Peter Lee On 19/02/2015 12:09 PM, Jason Kretzer wrote: Good day all! I am seeking

Re: [Interest] Installer Recommendations

2015-02-18 Thread Jason Kretzer
And just to add to it, if any of this can be scripted or some such to be done in an unattended manner. -Jason From: Jason Kretzer Sent: Wednesday, February 18, 2015 8:09 PM To: interest@qt-project.org Subject: Installer Recommendations Good day all! I am seeking recommendations for an

Re: [Interest] Installer Recommendations

2015-02-18 Thread Scott Aron Bloom
I use advanced installer. Essentially I use CMake's installer setup to create an installer directory. For windows, then I use advanced installer auto update based on all files to pickup every file that's in the directory. You can automatically via command line arguments, update the version, the

[Interest] Installer Recommendations

2015-02-18 Thread Jason Kretzer
Good day all! I am seeking recommendations for an installer (does not have to be free) program that I can use to deploy a Qt Application(5.3) and compiled with VS2010 to Windows 7. I am not sure of all the variety of packages out there but am generally seeking: 1.)Can create an .exe or

Re: [Interest] Installer Recommendations

2015-02-18 Thread Nikos Chantziaras
On 19/02/15 03:09, Jason Kretzer wrote: Good day all! I am seeking recommendations for an installer (does not have to be free) program that I can use to deploy a Qt Application(5.3) and compiled with VS2010 to Windows 7. What's wrong with Qt's installer? :-P