[Development] Qt Widget Designer: Using fully qualified enumerations in .ui file properties

2023-11-01 Thread Friedemann Kleint via Development
Hi, I am planning to migrate Qt Widget Designer towards using fully qualified enumerations when writing .ui files in 6.7. That is, instead of QFrame::Box it will then generate: QFrame::Shape::Box The motivation behind this is that it should support scoped enumerations and this will be

Re: [Development] Nominating Adrian Herrmann as approver for the Qt project

2023-08-22 Thread Friedemann Kleint via Development
Hi, +1 from me as well. Regards, Friedemann -- Friedemann Kleint The Qt Company GmbH -- Development mailing list Development@qt-project.org https://lists.qt-project.org/listinfo/development

Re: [Development] Nominating Shyamnath Premnadh as approver

2022-12-05 Thread Friedemann Kleint via Development
Hi, +1 from me as well. Regards, Friedemann -- Friedemann Kleint The Qt Company GmbH ___ Development mailing list Development@qt-project.org https://lists.qt-project.org/listinfo/development

[Development] CMake UNITY_BUILD ( QTBUG-109394 )

2023-01-16 Thread Friedemann Kleint via Development
Hi, I would like to propose considering making Qt suitable for CMake UNITY_BUILDs ( https://bugreports.qt.io/browse/QTBUG-109394 , https://cmake.org/cmake/help/latest/prop_tgt/UNITY_BUILD.html ) . This has originally been proposed for Qt for Python (

Re: [Development] New Qt example development guideline and revamping examples

2023-01-19 Thread Friedemann Kleint via Development
Hi, we also need to agree on whether the Qt library rules apply to the full extent; for example: - Do we use the modern string literals (u"bla"_s, previously, example code just constructed QString from ASCII and did not care about -DQT_NO_CAST_FROM_ASCII, IIRC) - Should tr() be used for all

Re: [Development] CMake UNITY_BUILD ( QTBUG-109394 )

2023-01-23 Thread Friedemann Kleint via Development
Hi, thank you for the reponses; so we conclude that we should support it and use it partially in COIN, ideally for slow platforms. I will try to focus on qtbase and qttools. qtdeclarative would also be a worthy goal; would someone be up for it? Basically the changes linked to

Re: [Development] CMake UNITY_BUILD ( QTBUG-109394 )

2023-02-13 Thread Friedemann Kleint via Development
Hi, quick status update: I think the major part of source code changes is done, few changes are still in the works or waiting for review. Thanks for the reviews and proposals. I think most changes were actually for the better and quite some cruft and duplication was unearthed. We are hoping

Re: [Development] Compile error on MSVC: '/RTC1' and '/O2' command-line options are incompatible

2023-07-03 Thread Friedemann Kleint via Development
Hi, this is https://bugreports.qt.io/browse/QTBUG-114925 . Regards, Friedemann -- Friedemann Kleint The Qt Company GmbH -- Development mailing list Development@qt-project.org https://lists.qt-project.org/listinfo/development

Re: [Development] Using string literals in autotests

2024-03-28 Thread Friedemann Kleint via Development
Hi, I'd say performance should be a consideration for autotests since they are compiled and run over and over again in the CI. So, string theory should be applied to avoid unnecessary conversions and allocations. Even it is considered a minor optimization, it will have an impact on energy