Re: [Interest] Cannot drag a Pane in Qml even on Qt 6.X

2023-03-06 Thread Nuno Santos
Mitch, Thank you very much for the clarification. Best regards, Nuno > On 7 Mar 2023, at 00:28, EXT Mitch Curtis wrote: > >> -Original Message- >> From: Interest > > On Behalf Of Nuno >> Santos >> Sent: Monday, 6 March 2023 4:55 PM >> To: Qt Int

[Interest] can't dump QStringList with qDebug()

2023-03-06 Thread Hamish Moffatt via Interest
I'm porting my code to Qt6 (6.4.2) (from 5.15) and ran into this mysterious problem; this code doesn't compile:     const auto connections = QSqlDatabase::connectionNames();     qDebug() << "Closing open connections:" << connections; claiming that ../../../src/server/server_database.cpp:691:4

[Interest] Transparent WebEngineView hides the elements behind it

2023-03-06 Thread Austin via Interest
 Ifwe make a Qt WebEngineView transparent it will not allow viewinganything behind it. This includes other Qt Quick elements or stuffdrawn behind it using OpenGL. Instead it causes whatever the previousframe was to be repeated. So for instance if we display an image inthe WebView and get rid of

Re: [Interest] Cannot drag a Pane in Qml even on Qt 6.X

2023-03-06 Thread EXT Mitch Curtis via Interest
> -Original Message- > From: Interest On Behalf Of Nuno > Santos > Sent: Monday, 6 March 2023 4:55 PM > To: Qt Interest > Subject: [Interest] Cannot drag a Pane in Qml even on Qt 6.X > > Hi, > > It was not possible to drag a Pane on Qt 5.X > > But I was almost convinced it was possible

Re: [Interest] QProcess unbuffered

2023-03-06 Thread Thiago Macieira
On Monday, 6 March 2023 12:17:39 PST Björn Schäpers wrote: > I had the exact same problem (but without QProcess). You have to use a trick > to disable the buffering, I don't know if its possible with QProcess, you > will have to use QProcess::CreateProcessArgumentModifier or most likely > CreatePro

Re: [Interest] QProcess unbuffered

2023-03-06 Thread Elvis Stansvik
Den mån 6 mars 2023 kl 21:21 skrev Scott Bloom : > > > > From: Björn Schäpers > Sent: Monday, March 6, 2023 12:18 PM > To: Scott Bloom ; interest@qt-project.org > Subject: Re: [Interest] QProcess unbuffered > > > > Am 06.03.2023 um 02:11 schrieb Scott Bloom: > > I have an external executable (mkva

[Interest] QML singleton properties are undefined if file placed in subdirectory

2023-03-06 Thread Maxim
Qt 6.4.2 QML singleton's properties undefined if singleton QML file placed in subdirectory e.g "/qml" (${CMAKE_SOURCE_DIR}/qml/Style.qml) set_source_files_properties(Style.qml PROPERTIES QT_QML_SINGLETON_TYPE TRUE) qt_add_qml_module(untitled URI untitled VERSION 1.0 QML_FILES qml/main.qml qml/St

Re: [Interest] QProcess unbuffered

2023-03-06 Thread Scott Bloom
From: Björn Schäpers Sent: Monday, March 6, 2023 12:18 PM To: Scott Bloom ; interest@qt-project.org Subject: Re: [Interest] QProcess unbuffered Am 06.03.2023 um 02:11 schrieb Scott Bloom: I have an external executable (mkvalidator from https://www.matroska.org/downloads/mkvalidator.html It nev

Re: [Interest] QProcess unbuffered

2023-03-06 Thread Björn Schäpers
Am 06.03.2023 um 02:11 schrieb Scott Bloom: I have an external executable (mkvalidator from https://www.matroska.org/downloads/mkvalidator.html It never flushes the output, and it uses linefeed without carriage returns to overwrite existing text on the output. The problem is, when I run i

[Interest] Cannot drag a Pane in Qml even on Qt 6.X

2023-03-06 Thread Nuno Santos
Hi, It was not possible to drag a Pane on Qt 5.X But I was almost convinced it was possible to do it on Qt 6.X But now I have tried again and it seems it is not possible. Or maybe I’m doing something wrong. Is there any strong reason a Pane cannot be draggable? Thanks! Nuno import QtQuick