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
> On Jun 15, 2019, at 8:49 AM, Patrick Stinson wrote:
>
> Has anyone else run into compile errors related to integer sizes on a 64 bit
> platform when passing -jn to make on macos? A build will be preceding just
> fine with one process, but when I increase the number it immediately bails
> w
> On Jun 13, 2019, at 6:50 PM, Bob Hood wrote:
>
> I've specialized in client/server solutions in my career, stretching all the
> way back to System V sockets on real, pre-Linux UN*X system, and culminating
> with today's Qt release. In that time, I've never really been concerned
> with--no
one is a very useful data point.
Cheers,
Steve
> ---
> Andy Maloney // https://asmaloney.com
> twitter ~ @asmaloney
>
>
>
> On Mon, Apr 8, 2019 at 7:40 AM Steve Atkins wrote:
> I'm using a custom URL scheme by registering the scheme with
> Q
I'm using a custom URL scheme by registering the scheme with
QEbEngineUrlScheme::registerScheme() at app startup, creating a handler
("Assets") that inherits from QWebEngineUrlSchemeHandler, installing that
scheme handler in the QWebEngineProfile passed to the QWebPage.
Assets::requestStarted(
nice-to-have features once that gets
integrated and we move to a new enough version.
Cheers,
Steve
>
> Regards
>
> Kai
>
> PS: webeng...@qt-project.org is arguably the better mailing list for
> discussion implementation details like this, CC'ed
> From: Interest o
In a normal web browser console.log() takes one or more values as parameters
and renders them for the user in some appropriate way. If the first parameter
is a string containing %s style escapes it'll do some printf style formatting
of the remaining parameters. (
https://developers.google.com/w
(I'm asking here because I think my odds of finding a CLion user in a pile of
Qt users is better than finding a Qt user in a bucket of CLion users).
I have a medium-sized Qt+cmake project - it builds fine, Qt Creator is
mostly[1] happy with it. I thought I'd give CLion a try, and it really doesn
I usually save QMainWindow state with saveState() in QMainWindow::closeEvent(),
as pretty much all the examples suggest.
But if I have floating dock widgets and I exit the app then during the
closeEvent the dock widget is usually (but not always) hidden, so saveState()
records it as not visible