[Interest] unexpected result from QString::compare

2020-05-07 Thread Hamish Moffatt
I'm trying to sort a list of strings where umlauts are involved, and not getting the answer I expect from QString::compare(). My sample code is:         auto a = QStringLiteral("Äbc");         auto b = QStringLiteral("BCD");         auto c = a.compare(b);         qDebug() << a << b << c; This p

Re: [Interest] (no subject)

2020-05-07 Thread Thiago Macieira
On Thursday, 7 May 2020 20:28:16 PDT Selastin George wrote: > How to run a qtwayland compositor without the support of any platform by > using DRM or anything like that? > > like weston launches from tty terminal. > > If I use --platform eglfs. It's affecting my compositor perfomance. Please exp

[Interest] (no subject)

2020-05-07 Thread Selastin George
How to run a qtwayland compositor without the support of any platform by using DRM or anything like that? like weston launches from tty terminal. If I use --platform eglfs. It's affecting my compositor perfomance. ___ Interest mailing list Interest@qt-p

Re: [Interest] Handling WM_QUIT messages when no window is shown

2020-05-07 Thread Giuseppe D'Angelo via Interest
Il 07/05/20 11:38, Julius Bullinger ha scritto: How would one create a hidden, non-interactive window with Qt? Didn't try it myself, but the idea would be class EventWindow : public QWindow { bool nativeEvent(~~~) override { ~~~ } }; EventWindow w; w.create(); // never show(), etc. this w

Re: [Interest] Handling WM_QUIT messages when no window is shown

2020-05-07 Thread Julius Bullinger
On 06.05.2020 14:57, Henry Skoglund wrote: Hi, when running apps on Windows without a window, you'll be missing out on a lot of inter-process stuff like WM_QUIT (that's why it's common for windowless apps to create a hidden, non-interactive window just to be able to receive all those WM_XXX). S

Re: [Interest] Using Q_NAMESPACE enum as a Q_PROPERTY type

2020-05-07 Thread Peter Klein
Did you register the namespace with qmlRegisterUncreatableMetaObject() ? And as I remember there is a limitation that all enums under one registered namespace should be in one file. Peter -- Peter Klein - peter.zr...@gmail.com so 2. 5. 2020 o 22:49 Doogster napísal(a): > I'm having trouble