Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Alexander Carôt
Hello to anyone who replied to my question,   thanks a lot for the answers - I will now try to figure what works best for me - probably MSI - we'll see.   Best   Alex   -- http://www.carot.de Email : alexan...@carot.de Tel.: +49 (0)177 5719797     Gesendet: Dienstag, 21. April 2020 um 11:0

Re: [Interest] Qt Updater/ Licenses

2020-04-21 Thread Tino Pyssysalo
On 22.4.2020, 5.53, "Interest on behalf of Jason H" wrote: > I have two accounts one for work which is paid commercial and my own hobby usage on my own laptop. > I understand that Qt now requires a sign in, but I was surprised to be denied on my own laptop. > > What do I need to

[Interest] Qt Updater/ Licenses

2020-04-21 Thread Jason H
I have two accounts one for work which is paid commercial and my own hobby usage on my own laptop. I understand that Qt now requires a sign in, but I was surprised to be denied on my own laptop. What do I need to do to use Qt under the open source licenses?___

Re: [Interest] Crash when signal fires

2020-04-21 Thread Ben Haller via Interest
> On Apr 21, 2020, at 7:51 PM, Giuseppe D'Angelo via Interest > wrote: > > On 4/22/20 1:44 AM, Ben Haller via Interest wrote: >> Hi folks. I’m seeing something weird that I don’t understand. I have a >> connection defined for the main window of my Qt Widgets app, like so: >> connect(qApp,

Re: [Interest] Crash when signal fires

2020-04-21 Thread Giuseppe D'Angelo via Interest
On 4/22/20 1:44 AM, Ben Haller via Interest wrote: Hi folks. I’m seeing something weird that I don’t understand. I have a connection defined for the main window of my Qt Widgets app, like so: connect(qApp, &QApplication::focusChanged, [this]() { updateUIEnabling(); }); I’m seeing a 100

[Interest] Crash when signal fires

2020-04-21 Thread Ben Haller via Interest
[ I realized I ought to supply the crash backtrace; I have appended it below my signature. ] Hi folks. I’m seeing something weird that I don’t understand. I have a connection defined for the main window of my Qt Widgets app, like so: connect(qApp, &QApplication::focusChanged, [this]() { up

[Interest] Crash when signal fires

2020-04-21 Thread Ben Haller via Interest
Hi folks. I’m seeing something weird that I don’t understand. I have a connection defined for the main window of my Qt Widgets app, like so: connect(qApp, &QApplication::focusChanged, [this]() { updateUIEnabling(); }); I’m seeing a 100% reproducible crash as a result of this. When the f

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Scott Bloom
I use CMake + Innosetup + windeployqt It makes the process very very simple. Scott -Original Message- From: Interest On Behalf Of Björn Schäpers Sent: Tuesday, April 21, 2020 11:41 AM To: interest@qt-project.org Subject: Re: [Interest] Windows installer for Qt programs Am 21.04.2020 um

[Interest] Qt Application - Disabling AVX/AVX2

2020-04-21 Thread coroberti .
Hi, Is it enough to define: QMAKE_CFLAGS -= -arch:AVX -arch:AVX2 QMAKE_CXXFLAGS -= -arch:AVX -arch:AVX2 to ensure that compilation by QtCreator with Qt-5.14-MSVC Windows will not compile with such optimization flags even if avx and avx2 instructions have not been disabled in Qt-library itself?

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Elvis Stansvik
Den tis 21 apr. 2020 kl 09:21 skrev "Alexander Carôt" : > > Hello all, > > I consider shipping my Qt built software with a conventional installer on > Windows. > > Can anyone give me a recommendation of a solid freeware for this purpose ? Just to chime in to what others have said: Our project use

[Interest] How to get icon theme?

2020-04-21 Thread Matthew Woehlke
How do I determine what icon theme my application is using? QIcon::themeName() just returns an empty string. (But QIcon::fallbackThemeName() says "breeze"!) I am actually using "breeze-dark", and if I don't do anything, I get icons from that theme. I need to know because my application will us

Re: [Interest] Customizing ui/rcc compiler in qmake

2020-04-21 Thread Patrick Stinson
Sorry, I meant uic not rcc. > On Apr 21, 2020, at 10:14 AM, Patrick Stinson wrote: > > Is there a way to customize the ui compiler to use a command other than rcc? > > For example, I am trying to set up my pyqt5 project using only qmake and want > it to use the command pyrcc5 instead of rcc, a

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Björn Schäpers
Am 21.04.2020 um 09:19 schrieb "Alexander Carôt": Hello all, I consider shipping my Qt built software with a conventional installer on Windows. Can anyone give me a recommendation of a solid freeware for this purpose ? Thanks in advance, best Alex We use Innosetup at Work for that. I've not

[Interest] Customizing ui/rcc compiler in qmake

2020-04-21 Thread Patrick Stinson
Is there a way to customize the ui compiler to use a command other than rcc? For example, I am trying to set up my pyqt5 project using only qmake and want it to use the command pyrcc5 instead of rcc, and with a few custom command line arguments. Thanks! _

[Interest] Config errors while configuring Qt 5.12.8 LTS on ubuntu

2020-04-21 Thread Ramakanth Kesireddy
Hi, Below is the configure line for Qt 5.12.8 LTS sources: ./configure -opensource -confirm-license -qt-libjpeg -qt-zlib -qt-libpng -sql-sqlite -qt-xcb -no-cups -no-opengl -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcanvas3d -skip qtconnectivity -skip qtdeclarative -skip qtgamepad -

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Steve Atkins
On 21/04/2020 08:19, "Alexander Carôt" wrote: Hello all, I consider shipping my Qt built software with a conventional installer on Windows. Can anyone give me a recommendation of a solid freeware for this purpose ? WIX. Something of a learning curve, but worth the effort. Cheers,   Steve

Re: [Interest] QVariant compare operator

2020-04-21 Thread Matthew Woehlke
On 20/04/2020 12.21, André Pönitz wrote: On Mon, Apr 20, 2020 at 10:04:38AM -0400, Matthew Woehlke wrote: On 19/04/2020 08.23, André Pönitz wrote: QVariant(TypeA) and QVariant(TypeB) can be ordered for different TypeA and TypeB based e.g. on alphabetical order of their .typeName(). If wanted,

[Interest] Assigning video provider to different video outputs

2020-04-21 Thread Nuno Santos
Hi, From my experience it doesn’t seem to be possible to assign the same video provider to two different VideoOutput elements. So, what I’m trying to do now is to take it out from on VideoOutput and then assigning it to another VideoOutput. However, I can’t seem to be able to do it as well.

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Yves Maurischat
Am 21.04.2020 um 10:55 schrieb alexander golks: ... For Qt itself it may be great, for other (differentyl structured) projects it's often not worth the hassle. ... besides, is there an easy offline upgrade way available now using IFW? Not sure, as I haven't had that requirement yet. In my cur

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread alexander golks
Am Tue, 21 Apr 2020 10:46:02 +0200 schrieb Yves Maurischat : > ... > For Qt itself it may be great, for other (differentyl structured) > projects it's often not worth the hassle. > ... > besides, is there an easy offline upgrade way available now using IFW? -- /* * Your aims are high, and y

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Yves Maurischat
I wouldn't recommend the Qt Installer Framework, due to its complexity and some problematic features. It's targeted at installing Qt, but can be a PITA for projects with a different apporach: On Windows it always creates registry entries pointing at the (automagically generated) uninstaller. Y

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Nils Jeisecke via Interest
Hi Alex, Coming from a Qt background, Qt Installer framework would be an obvious candidate. I've not used QIFW but IMHO the installer part is one of the things that do not really cry out for cross platform. So in the past I tended to use NSIS for Windows installers. It's powerful, strange and qu

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Vadim Peretokin
Hello, If you're targeting normal users and not sysadmins, I'd recommend Squirrel instead: https://github.com/Squirrel/Squirrel.Windows Qt Installer Framework works but it has aesthetics targeting 2010, not 2020. On Tue, Apr 21, 2020 at 9:37 AM Dmitriy Purgin wrote: > Hello Alexander, > > you

Re: [Interest] Windows installer for Qt programs

2020-04-21 Thread Dmitriy Purgin
Hello Alexander, you could try Qt Installer Framework: https://doc.qt.io/qtinstallerframework/index.html Cheers Dmitriy On Tue, Apr 21, 2020 at 9:20 AM "Alexander Carôt" wrote: > Hello all, > > I consider shipping my Qt built software with a conventional installer on > Windows. > > Can anyone

[Interest] Windows installer for Qt programs

2020-04-21 Thread Alexander Carôt
Hello all, I consider shipping my Qt built software with a conventional installer on Windows. Can anyone give me a recommendation of a solid freeware for this purpose ? Thanks in advance, best Alex -- http://www.carot.de Email : alexan...@carot.de Tel.: +49 (0)177 5719797 ___