[Interest] Including separate libraries with inlines in the Qt installers

2015-10-08 Thread Dimitar Dobrev
    Hello all,     Months ago I sent this suggestion: https://bugreports.qt.io/browse/QTBUG-32995 . In short, inlined symbols are needed so that language bindings can be invoked. I participated in a discussionat [Development] Qt binaries with inlined functions where we concludedit was

[Interest] New AppleTV Support

2015-10-08 Thread Gil Hagi
Hi guys, has anyone tried to compile Qt with the new tvOS SDK? Access to the actual hardware is extremely limited right now, but based on the available information and beta SDK, I was wondering if anyone has tried it yet. -Gil ___ Interest mailing

Re: [Interest] Qml Tooltips

2015-10-08 Thread Nicolas Kniebihler
Hi Jerome, I don't know if that answers your question, but I personally use the way QML shows tooltips above Buttons: MyTooltip.qml: importQtQuick2.3 importQtQuick.Controls1.2 importQtQuick.Controls.Private1.0 MouseArea{ id:behavior propertystringtooltip hoverEnabled:true

Re: [Interest] Windows 10 Intel Atom + Android Atom Intel

2015-10-08 Thread Kalinowski Maurice
Hi, > How does this work? > Do I need to run a remote debugger process on the tablet to allow for > Compile, Deploy, > Debug from a Host Windows 10 PC to a Windows 10 Tablet. I cannot imagine > running > MSVC2015 on the tablet just to Compile, Deploy, Debug. You will need to install the

Re: [Interest] Online installer issue

2015-10-08 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=theqtcompany@qt-project.org > [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] On > Behalf Of Jason H > Sent: Wednesday, October 07, 2015 8:58 PM > To: interest@qt-project.org > Subject: [Interest] Online

Re: [Interest] Qml Tooltips

2015-10-08 Thread Nils Jeisecke
Hi, My solution looks like Nicolas'. Feel free to vote for QTBUG-37968 regarding the forced use of private API to achieve this. Nils ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Windows 10 Intel Atom + Android Atom Intel

2015-10-08 Thread m...@rpzdesign.com
Maurice: Does the Visual Studio Add-In 1.2.4 work for MSVC 2015? http://download.qt.io/official_releases/vsaddin/qt-vs-addin-1.2.4-opensource.exe.mirrorlist So for the best integrated build, deploy, debug experience I should plan on NOT using Qt-Creator on Windows but instead do all of my work

Re: [Interest] Qml Tooltips

2015-10-08 Thread Jérôme Godbout
Thanks you very much, it work very well. let's hope this Private API make it public some day with possible style customization. I can now remove the ugly z ordering of many component now, make the scripts way more clean. regards, Jerome On Thu, Oct 8, 2015 at 7:31 AM, Nicolas Kniebihler <

[Interest] QMovie & Animated gif problem

2015-10-08 Thread Berkay Elbir
Hello all, I want to share an issue with you. I have a QMessageBox and I put an animated gif on this Dialog with QLabel and inside QMovie. But gif is seen only once but I refresh scene, QMessageBox is work but gif is not seen anymore. Is there anyone know anything about this issue? QMessageBox

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Thiago Macieira
On Thursday 08 October 2015 21:57:09 Igor Mironchik wrote: > Hi guys, > > Can anybody explain me, please. Is here memory leaks or no? > > Please look in the attachment... Yes, these look like real leaks: ==3533== 136 (16 direct, 120 indirect) bytes in 1 blocks are definitely lost in loss

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Elvis Stansvik
2015-10-08 20:57 GMT+02:00 Igor Mironchik : > Hi guys, > > Can anybody explain me, please. Is here memory leaks or no? Yes. Just look at the leak summary at the end. Elvis > > Please look in the attachment... > > -- > Best Regards, > Igor Mironchik. > > >

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Igor Mironchik
Hi, In the attachment valgrind log with debug version and -Wl,-z,nodelete linker options On 08.10.2015 22:09, Thiago Macieira wrote: On Thursday 08 October 2015 21:57:09 Igor Mironchik wrote: Hi guys, Can anybody explain me, please. Is here memory leaks or no? Please look in the

[Interest] Whats the difference between compiling with /MD and /MT?

2015-10-08 Thread Nuno Santos
Hi, Today I have built Qt statically with the option -openssl-linked. My first option was to link with the MD versions of libs because Qt is using /MD during the build process. After a successfull compilation of Qt I have built the a static plugin I'm working on but the host software

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Matthew Woehlke
On 2015-10-08 16:32, Igor Mironchik wrote: > Provide debug build with online installer :) > > I don't have so much time to build Qt from sources on my Linux > machine... This is very slow machine :) > > Qt will compile days... :) Only if your machine is quite slow. Are you using Qt as

Re: [Interest] Whats the difference between compiling with /MD and /MT?

2015-10-08 Thread Thiago Macieira
On Thursday 08 October 2015 20:29:20 Nuno Santos wrote: > Hi, > [cut] -MD tells Visual Studio that you're linking against the .dll that contains the release-mode version of its runtime. The -MT option tells it that you're going to link against the .lib that contains the release-mode static

Re: [Interest] Whats the difference between compiling with /MD and /MT?

2015-10-08 Thread Nuno Santos
Thiago, Thanks for your reply. You have just confirmed me what I have understood from my readings on the MSDN documentation. Question: When the -static flag is passed to configure what configure does? Because from the compile output I can see the /MD flag even when compiled statically. I

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Thiago Macieira
On Thursday 08 October 2015 22:27:10 Igor Mironchik wrote: > ==4094==by 0xDC4D180: QXcbWindow::hide() (in > /home/igor/Qt/5.5/gcc_64/lib/libQt5XcbQpa.so.5.5.0) I meant a debug build of Qt, not of your application. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect -

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Till Oliver Knoll
> Am 08.10.2015 um 22:21 schrieb Thiago Macieira : > Leaks-because-of-exit don't > count, except for pedantism. Sorry to be pedantic one here, but leaks mean that d'tors are not called, even when at process exit memory is reclaimed by the OS. And not calling a

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Thiago Macieira
On Thursday 08 October 2015 23:40:10 Till Oliver Knoll wrote: > > Am 08.10.2015 um 22:21 schrieb Thiago Macieira > > : > > Leaks-because-of-exit don't > > count, except for pedantism. > > Sorry to be pedantic one here, but leaks mean that d'tors are not called, >

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Thiago Macieira
On Thursday 08 October 2015 21:09:40 Elvis Stansvik wrote: > Yes. Just look at the leak summary at the end. Not a good indication. Most of the leaks that it showed are false positives: they weren't leaks until the application exited. Leaks-because-of-exit don't count, except for pedantism. --

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Igor Mironchik
Hi, On 08.10.2015 23:20, Thiago Macieira wrote: > On Thursday 08 October 2015 22:27:10 Igor Mironchik wrote: >> ==4094==by 0xDC4D180: QXcbWindow::hide() (in >> /home/igor/Qt/5.5/gcc_64/lib/libQt5XcbQpa.so.5.5.0) > I meant a debug build of Qt, not of your application. Provide debug build with

Re: [Interest] Whats the difference between compiling with /MD and /MT?

2015-10-08 Thread Thiago Macieira
On Thursday 08 October 2015 22:51:58 Nuno Santos wrote: > Thiago, > > Thanks for your reply. > > You have just confirmed me what I have understood from my readings on the > MSDN documentation. Question: > > When the -static flag is passed to configure what configure does? Because > from the

[Interest] Is here memory leaks?

2015-10-08 Thread Igor Mironchik
Hi guys, Can anybody explain me, please. Is here memory leaks or no? Please look in the attachment... -- Best Regards, Igor Mironchik. ==3533== Memcheck, a memory error detector ==3533== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al. ==3533== Using Valgrind-3.10.1 and LibVEX;

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Igor Mironchik
Oh, sorry... In the debug version there is no information you need too... Just looked at the log. On 08.10.2015 22:09, Thiago Macieira wrote: > On Thursday 08 October 2015 21:57:09 Igor Mironchik wrote: >> Hi guys, >> >> Can anybody explain me, please. Is here memory leaks or no? >> >> Please

Re: [Interest] Whats the difference between compiling with /MD and /MT?

2015-10-08 Thread Nuno Santos
I have added: LIBS += LIBCMT.lib And it's now linking fine... On 08/10/2015 20:29, Nuno Santos wrote: Hi, Today I have built Qt statically with the option -openssl-linked. My first option was to link with the MD versions of libs because Qt is using /MD during the build process. After a

Re: [Interest] Is here memory leaks?

2015-10-08 Thread Igor Mironchik
On 08.10.2015 22:09, Thiago Macieira wrote: > On Thursday 08 October 2015 21:57:09 Igor Mironchik wrote: >> Hi guys, >> >> Can anybody explain me, please. Is here memory leaks or no? >> >> Please look in the attachment... > Yes, these look like real leaks: > > ==3533== 136 (16 direct, 120