[Development] Meeting minutes from Qt Release Team meeting 21.11.2023

2023-11-21 Thread Jani Heikkinen via Development
Qt 6.6 status: * Qt 6.6.1 release content is frozen and package creation is ongoing * Qt 6.6.1 will be released when package testing is done * Most probably this will happen at the beginning of next week Qt 6.7 status: * Platform and module freeze -milestone will be in effect

Re: [Development] How to make a qt6 module using cmake?

2023-11-21 Thread Alexandru Croitor via Development
> On 21. Nov 2023, at 16:46, BogDan Vatra wrote: > > On 2023-11-21 16:47, Alexandru Croitor wrote: >>> On 21. Nov 2023, at 13:21, Bogdan Vatra via Development >>> wrote: >>> Hello there, >> Hi, > > Salut, > >> > > I tried qtmqtt to be sure that I didn't do any mistakes, it seems if I

Re: [Development] QtWidgets Item / Model / View: tree model examples

2023-11-21 Thread Laszlo Papp
Hi Arno, Thanks for the feedback. I have personally never needed more than the TreeItem class from the examples I referred to. I have worked on various trees on the GUI. Apologies, perhaps, I have not made my inquiry clear. This is not calling for opinions about TreeItem vs. QStandardItem vs.

Re: [Development] QtWidgets Item / Model / View: tree model examples

2023-11-21 Thread André Somers
Hi, On 21-11-2023 16:31, Laszlo Papp wrote: Hi, The tree model examples seem to invent a custom tree item. Simple: https://doc.qt.io/qt-6/qtwidgets-itemviews-simpletreemodel-example.html Edit: https://doc.qt.io/qt-6/qtwidgets-itemviews-editabletreemodel-example.html at

Re: [Development] QtWidgets Item / Model / View: tree model examples

2023-11-21 Thread Arno Rehn
Hey Lazlo, I've been working with various list and tree models a lot in recent years. I think I've never used QTreeWidgetItem and/or QStandardItem even once. In my experience these classes or only viable for the most simple cases. I'd usually expect people to need a custom data structure

[Development] QtWidgets Item / Model / View: tree model examples

2023-11-21 Thread Laszlo Papp
Hi, The tree model examples seem to invent a custom tree item. Simple: https://doc.qt.io/qt-6/qtwidgets-itemviews-simpletreemodel-example.html Edit: https://doc.qt.io/qt-6/qtwidgets-itemviews-editabletreemodel-example.html at

Re: [Development] How to make a qt6 module using cmake?

2023-11-21 Thread Alexandru Croitor via Development
> On 21. Nov 2023, at 13:21, Bogdan Vatra via Development > wrote: > > Hello there, Hi, > > I'm trying to port a qt5 module to qt6 which it seems starting with 6.4.x > the qmake support is broke/removed for modules so I'm forced to use cmake... > > I checked other qt modules (e.g.

[Development] How to make a qt6 module using cmake?

2023-11-21 Thread Bogdan Vatra via Development
Hello there, I'm trying to port a qt5 module to qt6 which it seems starting with 6.4.x the qmake support is broke/removed for modules so I'm forced to use cmake... I checked other qt modules (e.g. https://code.qt.io/cgit/qt/qtmqtt.git/tree) and I did mostly the same but there are a few