Re: [Interest] Host Qt version requirement when cross-compiling

2022-03-13 Thread Croitor Alexandru
Hi, See https://lists.qt-project.org/pipermail/development/2021-November/041917.html Quote: >Apart from that, after internal discussion I have to lower expectations >regarding our commitment to this. I don't see us creating the test >infra for testing the build of different host/target Qt combi

Re: [Interest] Qt 6 Universal binaries for Mac OS?

2021-09-22 Thread Croitor Alexandru
Hi, Seems like the doc snapshots haven't been indexed by search engines yet (from my results at least). See https://doc-snapshots.qt.io/qt6-6.2/macos.html#architectures You can specify the relevant options in Creator's Project pane for either build system. On Wed, Sep 22, 2021 at 10:38 PM Wesle

Re: [Interest] PySide2 installer for windows?

2019-05-18 Thread Croitor Alexandru
Hi, Point 1: At the official first release of Qt For Python / PySide2 which was bundled with Qt 5.11, we never provided py27 windows packages. So officially, we haven't dropped any packages, because they weren't there in the first place. Point 2: Packages for py2.7 for PySide2 do not exist not be

Re: [Interest] Building Qt and WebEngine

2019-04-25 Thread Croitor Alexandru
Hi, You install Qt, then you can use the Qt installed qmake to build and install WebEngine. So something like: 1) qt5/configure && make && make install 2) mkdir qtwebengine_build && cd qtwebengine_build && qt_installed_location/bin/qmake /path/to/qtwebengine.pro 3) make && make install On Th

Re: [Interest] What are you using for continuous integration?

2019-02-18 Thread Croitor Alexandru
qmake > spec ‘macx-clang’ > > What are the possible reasons for qmake to return with such error? What is > qmake looking for that it can’t find? > > Does anyone has an idea why this is happening? > > Thanks in advance! > > Regards, > > Nuno > > On 17 Feb 20

Re: [Interest] What are you using for continuous integration?

2019-02-17 Thread Croitor Alexandru
Hi, The mentioned qtci repo https://github.com/benlau/qtci also has two reference links which look useful. Pasting here as well. http://www.slidedeck.io/lasconic/qtci-qtcon2016 http://andrewdolby.com/articles/2016/continuous-deployment-for-qt-applications/ Another source of inspiration can be th

Re: [Interest] QList and erase problem...

2015-09-14 Thread Croitor Alexandru
The documentation for QList::erase says: -- Removes the item associated with the iterator *pos* from the list, and returns an iterator to the next item in the list (which may be end ()). Documentation for iterator::operator++() says: Calling this function on QList::end () leads to undefined res

Re: [Interest] Track QQuickText console warning

2015-08-29 Thread Croitor Alexandru
So I was able to partially debug the issue, and I thing I found a bug, it concerns Accessibility. The Label element is defined as Text { id: label // . Accessible.name: text Accessible.role: Accessible.StaticText } If I remove the Accessible.role property, the issue disappear

[Interest] Track QQuickText console warning

2015-08-27 Thread Croitor Alexandru
Hi. I have Label {} qml element that has its visible and enabled property set to false. Whenever I hover over where the element should be, the following warning appears in console: QQuickText QVariant(Invalid) QRect(0,0 0x0) If remove the element, or set the visible flag to true, the warning di

Re: [Interest] Objective C Category for QCocoaApplicationDelegate undefined symbols

2015-07-14 Thread Croitor Alexandru
Thanks for the suggestions. I'll check if I'll be able to link against the base protocol (maybe with the use of the mentioned library). For the time being, I was able to solve the problem using method swizzling, by replacing the method provided by Qt with my own Block (lambda). I am aware that ove

[Interest] Objective C Category for QCocoaApplicationDelegate undefined symbols

2015-07-05 Thread Croitor Alexandru
Hi. I'm trying to add an Objective C category to the QCocoaApplicationDelegate class that is defined by the Mac OS X Cocoa platform plugin, to add / override some methods. The QCocoaApplicationDelegate is defined in Qt's source folder "src/plugins/platforms/cocoa/qcocoaapplicationdelegate.h". My

[Interest] Objective C Category for QCocoaApplicationDelegate undefined symbols

2015-07-02 Thread Croitor Alexandru
Hi. I'm trying to add an Objective C category to the QCocoaApplicationDelegate class that is defined by the Mac OS X Cocoa platform plugin, to add / override some methods. The QCocoaApplicationDelegate is defined in Qt's source folder "src/plugins/platforms/cocoa/qcocoaapplicationdelegate.h". My