Re: [Interest] Qt 6.5.4-LTS from source -> fatal: Unable to find current revision in submodule path 'qt5compat'

2024-02-12 Thread Alexandru Croitor via Interest
12. Feb 2024, at 10:01, Alexandru Croitor via Interest > wrote: > > Hi again, > > Could you please try to clone qt5compat repo as shown below into a new > directory, and then share output of all the commands? > > cd some_tmp_dir > git clone > "ssh://@c

Re: [Interest] Qt 6.5.4-LTS from source -> fatal: Unable to find current revision in submodule path 'qt5compat'

2024-02-12 Thread Alexandru Croitor via Interest
Hi again, Could you please try to clone qt5compat repo as shown below into a new directory, and then share output of all the commands? cd some_tmp_dir git clone "ssh://@codereview.qt-project.org:29418/qt/tqtc-qt5compat" # need to adjust user name cd tqtc-qt5compat git rev-parse HEAD git

Re: [Interest] Qt 6.5.4-LTS from source -> fatal: Unable to find current revision in submodule path 'qt5compat'

2024-02-09 Thread Alexandru Croitor via Interest
Hi, > On 9. Feb 2024, at 11:15, Nuno Santos wrote: > > I’m trying as an alternative to build 6.6.1 from source but I’m also having > this: > > + git submodule init tests/auto/qml/ecmascripttests/test262 > *** /qtdeclarative/tests/auto/qml/ecmascripttests/test262 not found, > ignoring

Re: [Interest] Qt 6.5.4-LTS from source -> fatal: Unable to find current revision in submodule path 'qt5compat'

2024-02-09 Thread Alexandru Croitor via Interest
Hi, replying inline. > On 9. Feb 2024, at 11:05, Nuno Santos wrote: > > Alexandru, > > Same problem > > ➜ 6.5.4 git clone > "ssh://sinosoi...@codereview.qt-project.org:29418/qt/tqtc-qt5" > Cloning into 'tqtc-qt5'... > remote: Counting objects: 189, done > remote: Finding sources: 100%

Re: [Interest] Qt 6.5.4-LTS from source -> fatal: Unable to find current revision in submodule path 'qt5compat'

2024-02-09 Thread Alexandru Croitor via Interest
Hi, I just tried the following sequence of commands locally with no pre-existing directory, and everything worked fine. git clone "ssh://@codereview.qt-project.org:29418/qt/tqtc-qt5" qt6_new cd qt6_new git checkout origin/tqtc/lts-6.5.4 ./init-repository --module-subset=qt5compat Can you

Re: [Interest] CMake problems with WASM

2023-11-21 Thread Alexandru Croitor via Interest
Hi, Configure with cmake -B build -G Ninja -S . -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/Qt6.2.0/6.6.0/wasm_singlethread/lib/cmake/Qt6/qt.toolchain.cmake -DQT_CHAINLOAD_TOOLCHAIN_FILE= > On 21. Nov 2023, at 15:04, DAS Loop wrote: > > > Hi, > > I have a small test for wasm using cmake that

Re: [Interest] binaries for Linux

2023-11-07 Thread Alexandru Croitor via Interest
Hi, For Qt 6.6.0, it's RHEL 8.6. https://github.com/qt/qt5/blob/v6.6.0/coin/platform_configs/cmake_platforms.yaml#L173 The ones with 'Packaging' are the ones available from the online installer. > On 7. Nov 2023, at 14:17, Danil Shkodin > wrote: > > Hi. > I was wondering > what distro are

Re: [Interest] Issue with CMake and Qt6 on Windows

2023-08-30 Thread Alexandru Croitor via Interest
Hi, Instead of specifying the Qt6_DIR env var, pass -DCMAKE_PREFIX_PATH=C:\Qt\6.6.0\msvc2019_64 to CMake. Specifying the Qt6_DIR cache var is not sufficient to find Qt at the moment (there is an open bug about it). Specifying the Qt6_DIR env var not being sufficient is likely the same issue.

Re: [Interest] Per-language lupdate options not possible with qt_add_lupdate CMake helper?

2023-08-07 Thread Alexandru Croitor via Interest
Hi, Unless i'm misreading the code, i don't think it's currently possible to pass per-file / per-lang separate options for a single target with qt_add_lupdate. You could try to work around it by having separate targets per language, but that's clearly sub-optimal. You should be fine with

Re: [Interest] qmake: set CFBundleDisplayName?

2023-05-31 Thread Alexandru Croitor via Interest
Hi, >From https://doc.qt.io/qt-6/ios.html#customizing-xcode-project-settings Something like this should work? product_name.name = PRODUCT_NAME product_name.value = QMAKE_MAC_XCODE_SETTINGS += product_name > On 31. May 2023, at 14:29, Alexander Dyagilev wrote: > > Hello, > > Is there a

Re: [Interest] What is the right way of creating a static lib that has qml resources with cmake?

2023-01-23 Thread Alexandru Croitor via Interest
Indeed, /wholearchive exists on windows and can be used with the referenced cmake version, but unfortunately: - ensuring certain symbols are not discarded - others are (-gc-sections), - it works reliably - for all platforms that qt supports is more involved. See QTBUG-97816 , the comments

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-10 Thread Alexandru Croitor via Interest
Hi, I can't say what's going wrong with qtwebsockets at the moment, but try configuring with -skip qtwebsockets -skip qttranslations That should hopefully avoid the second error. From: Interest on behalf of Stefan Seefeld Sent: Sunday, January 8,

Re: [Interest] Qt 6.4.1 static - Missing some debug objects when using a static build kit?

2022-12-08 Thread Alexandru Croitor via Interest
Hi, Most likely you're hitting https://gitlab.kitware.com/cmake/cmake/-/issues/21475 Make sure you call either ninja install in the Qt build dir or cmake --build . --target install Just cmake --install . does not work. > On 9. Dec 2022, at 00:07, Nuno Santos wrote: > > Hi, > > I’ve built

Re: [Interest] how to link my own GLib build to a Qt 6.4 build?

2022-11-09 Thread Alexandru Croitor via Interest
Hi, Qt find glib2 using this code https://github.com/qt/qtbase/blob/dev/cmake/3rdparty/extra-cmake-modules/find-modules/FindGLIB2.cmake which uses pkg-config underneath. According to https://askubuntu.com/questions/210210/pkg-config-path-environment-variable you can try setting the

Re: [Interest] TSAN findings in a simple QApplication/QMetaObject::invokeMethod example

2022-11-05 Thread Alexandru Croitor via Interest
Hi. Make sure that the configure summary shown at the end mentions that tsan is enabled. Search for sanitizer. I think the right configure line is ../qt6/configure -developer-build -opensource -nomake examples -nomake tests -sanitize thread From:

Re: [Interest] Issue building Qt from source

2022-10-25 Thread Alexandru Croitor via Interest
Hi, You're hitting https://gitlab.kitware.com/cmake/cmake/-/issues/21475 Use ninja install instead of cmake --install . That's why the configure script summary output says ninja install as well. > On 25. Oct 2022, at 14:59, Sean Murphy via Interest > wrote: > > Yesterday I built Qt 6.3.2

Re: [Interest] building Qt iOS from source

2022-08-29 Thread Alexandru Croitor
Hi, -qt-host-path should point to ../6.3.1/macos, not ../6.3.1/macos/lib/cmake/Qt6HostInfo ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Qt6: Android: huge APK ?

2022-07-06 Thread Alexandru Croitor
do not remember > exact size). > > So, it seems it's just Windows. What is going on?... > > On 7/6/2022 9:57 AM, Alexandru Croitor wrote: >> Hi, >> >> Which host platform are you using? Also consider trying with a newer Qt >> version than 6.3.1. >&g

Re: [Interest] Qt6: Android: huge APK ?

2022-07-06 Thread Alexandru Croitor
Hi, Which host platform are you using? Also consider trying with a newer Qt version than 6.3.1. At least on macOS, the libQt6Qml library sizes are ok for me. ls -lh ../6.1.3/android_armv7/lib/libQt6Qml_armeabi-v7a.so -rwxr-xr-x 1 alex staff 2.6M Aug 27 2021

Re: [Interest] [Qt6] QML automatic type registration in a (shared) library

2022-01-19 Thread Alexandru Croitor
> On 19. Jan 2022, at 09:30, Konstantin Shegunov wrote: > > > Oh, I just took the easy (perhaps wrong) approach. I pushed from the backing > target to the consumer a cpp file, which is a dummy containing the pointer > thing. It just contains (Tsc.Ui is my module's URI): I assume you mean

Re: [Interest] [Qt6] QML automatic type registration in a (shared) library

2022-01-18 Thread Alexandru Croitor
Forgot to mention that because all the solutions we've tried don't support all our use cases, the work around is to rely on plugin loading (which would link to the shared lib). Or the volatile trick. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] [Qt6] QML automatic type registration in a (shared) library

2022-01-18 Thread Alexandru Croitor
Hi > On 19. Jan 2022, at 06:22, Konstantin Shegunov wrote: > > On that note the CMake people have an open ticket to provide decorating at > link time which should cover such a possible use case in the future[1]. > Whether this gets in, remains to be seen, but from a glance does seem >

Re: [Interest] debugging source fail? (windows, qt6)

2021-10-25 Thread Alexandru Croitor
Hi, From the 'bad' screenshot, it appears that the .pdb files are not picked up. Source mappings don't affect lookup of pdb files as far as i i know. If you mouse hover over one of the gray QFileInfo rows, what does the QtCreator popup say? Perhaps when you run your application, you've already

Re: [Interest] Provide a Means to Make Static Builds of Qt 6.1 for Android, macOS, Windows and GNU/Linux

2021-09-03 Thread Alexandru Croitor
Hi, Coin CI mostly just calls CMake with the configuration options specified at the link below (there are some additional configuration in other sibling files) https://github.com/qt/qt5/blob/dev/coin/platform_configs/cmake_platforms.yaml The ones that are building Qt as static libraries have

[Interest] New CMake version requirements for building and using Qt 6.2.0

2021-08-16 Thread Alexandru Croitor
Hi, The build system team raised the minimum required CMake version for the Qt 6.2.0 release. Here is the summary: To build Qt as shared libraries you need at least CMake version 3.16 (this was the case for Qt 6.1 as well). To use that shared Qt build you will now need at least CMake 3.16

Re: [Interest] Qt6 porting guidance: (MSDEV) QMAKE_CXXFLAGS += /source-charset

2021-07-09 Thread Alexandru Croitor
Hi, I think adding CONFIG += no_utf8_source to your qmake project should help. > On 9. Jul 2021, at 03:26, Mike Chinander wrote: > > Does it let you remove the utf-8 option? > >> QMAKE_CXXFLAGS -= /utf-8 > > On Thu, Jul 8, 2021 at 8:20 PM David M. Cotter wrote: > all my source code was

Re: [Interest] Require a qt_finalize_target() call in CMake user projects that use a static Qt

2021-05-05 Thread Alexandru Croitor
> On 5. May 2021, at 13:59, Joerg Bornemann wrote: > > On 5/5/21 1:32 PM, Marius Kittler wrote: > >> to me the most important point is that I can still stay in control over which >> plugins are linked against and which not. At best I can turn off pulling >> plugins automatically completely to

[Interest] Require a qt_finalize_target() call in CMake user projects that use a static Qt

2021-05-05 Thread Alexandru Croitor
Hi, Project developers that use CMake and a static Qt 5 build probably know that the developer experience(DX) wasn't the best (depending on which Qt modules or plugins the project uses). When we switched building Qt 6 to CMake, we hoped we could provide a nicer CMake project DX which involves

Re: [Interest] cmake build issues

2021-04-12 Thread Alexandru Croitor
Hi, I think you might be misreading the log. The build log snippet that you posted seems to be a config test, which is fine if it fails on certain platforms. You should try to scroll through the log to see the real failure reason. Or attach the full log to some service and share it so we can

Re: [Interest] Qt6 - Making Qt installer package for Windows, Linux and OS X

2020-12-09 Thread Alexandru Croitor
Hi, On the CMake side of things the focus was mostly on getting Qt to build with CMake. Going forward, i'd expect improvements on "consumption of Qt with CMake" part as well. For now, you'd have to do whatever you did in Qt 5 times. So using windeployqt, macdeployqt, custom scripts, etc.

Re: [Interest] Qt6 CMake Windows VS Debug Build Issues

2020-06-30 Thread Alexandru Croitor
Hi, Thanks for the feedback. I would appreciate if you could file 2 bug reports for the issues you encountered with the "Build System: CMake component". I am not surprised about the long path issues, but the the clang one is strange. Please provide your CMake configuration line and which clang

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-26 Thread Alexandru Croitor
Thanks again for starting it : ) > On 26. Aug 2019, at 16:01, Kyle Edwards wrote: > > On Sun, 2019-08-25 at 18:07 +, Alexandru Croitor wrote: >> Note that Qt 5.14 will come with support for importing static plugins >> from CMake, and you won't have to bother with

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-25 Thread Alexandru Croitor
It's present in the 5.14 branch. Docs: https://doc-snapshots.qt.io/qt5-dev/qtcore-cmake-qt5-import-plugins.html ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-25 Thread Alexandru Croitor
Note that Qt 5.14 will come with support for importing static plugins from CMake, and you won't have to bother with the dependency order anymore. ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Q_ATOMIC_INT64_IS_SUPPORTED: Qt Compile errors on macOS

2019-06-25 Thread Alexandru Croitor
> On 25. Jun 2019, at 00:46, Thiago Macieira wrote: > > On Monday, 24 June 2019 08:24:25 PDT Thiago Macieira wrote: >> Anyway, let's stop speculating. Until we can reliably reproduce this problem >> to understand what's going on, we're shooting in the dark. > > I managed to reproduce this

Re: [Interest] [PySide] PySide2 installer for windows?

2019-05-17 Thread Alexandru Croitor
if you check https://pypi.org/project/PySide2/5.11.0a1.dev1530776631953/#files you'll see that even the very first release on pypi.org didn't have the win32 py27 windows wheels. Most likely you installed those from http://download.qt.io/snapshots/ci/pyside/5.9/latest/pyside2/

Re: [Interest] How to enable chrome:// urls in qtwebengine?

2018-11-19 Thread Alexandru Croitor
Hi, Not all Chrome URLs are disabled. Some of them are still available, for example chrome://gpu/ Here's a list I found https://github.com/qutebrowser/qutebrowser/issues/2292 I don't think we have a documented list of supported urls because: 1) Not all the plumbing code is there to make them

Re: [Interest] Strange unresolved external symbols in QtCore on windows

2018-11-06 Thread Alexandru Croitor
I haven't looked at the error messages, but I think "#define protected public" is used by PyQt5 / sip source code to allow overriding protected methods from Python derived classes. I don't know if they have support for disabling it. > On 4. Nov 2018, at 06:45, Patrick Stinson wrote: > >

Re: [Interest] How to inspect a Qt Application memory usage?

2018-10-22 Thread Alexandru Croitor
Valgrind hasn't worked for me on macOS since 10.11 or 10.10, can't recall. >From my observations, there are no interested and / or qualified people to fix >the mac port, and it's an ever moving target because of kernel changes with >each released version. I've submitted a patch and it took

Re: [Interest] Does XCode 10 work for Qt iOS?

2018-09-24 Thread Alexandru Croitor
Most probably qmake has cached the paths to the toolchain / sdk. Either run make qmake && make qmake_all && make inside your Qt build foder, and / or your application. A more secure way is to rebuild whatever you are building from scratch. Alternatively you can download an older Xcode and copy

Re: [Interest] Backporting bugs to Qt 5.6

2018-09-21 Thread Alexandru Croitor
Hi, Thanks for showing interest in contributing to Qt. You will probably want to read http://wiki.qt.io/Qt_Contribution_Guidelines And specifically to your questions, bug fixes first go to the current stable brach of Qt (5.11.3 in this case), and once the patches are in, they can be

Re: [Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Alexandru Croitor
Line 29 disables the Qbs Bundle module functionality, in this case "tiled" will be a shared library "tiled.dylib" instead of a framework "tiled.framework". Line 30, see http://doc-snapshots.qt.io/qbs/qml-qbsmodules-cpp.html#sonamePrefix-prop , it's equivalent to

Re: [Interest] Qt on macOS 10.14 Mojave

2018-07-05 Thread Alexandru Croitor
report in the mean time with the relevant details? > > Morten > >> On 4 Jul 2018, at 16:31, Alexandru Croitor wrote: >> >> The team working on Qt For Python has already encountered an issue with CA >> layer backed views. >> >> The current

Re: [Interest] Qt-5.11.0 - QtWebEngine Compilation Broken for Windows 32-bit Builds

2018-07-05 Thread Alexandru Croitor
I believe that building webengine without opengl has regressed a few times, so it's plausible that it could happen. > On 4. Jul 2018, at 18:59, coroberti . wrote: > > Hi, > > I was trying to follow the recommendations of Kai by: > > > 1. Using the cross compiler and running in MSVC prompt: >

Re: [Interest] Qt on macOS 10.14 Mojave

2018-07-04 Thread Alexandru Croitor
The team working on Qt For Python has already encountered an issue with CA layer backed views. The current workaround to get tests and integrations succeed is to disable the feature via the currently available environment variable, but I guess 10.14 forces us to use layers, which means we will

Re: [Interest] Qt for Python and mobiles

2018-05-30 Thread Alexandru Croitor
Hi, That is correct, there is currently no mobile support for the upcoming release. We will revisit after release (no timeframe though). From: Interest on behalf of Jérôme Godbout Sent: Wednesday, May 30, 2018 3:27:29 PM To: Qt Interest Subject:

Re: [Interest] What is the minimum version of Mac OS X Qt 5.10 application will run on?

2018-02-19 Thread Alexandru Croitor
Hi, You can check the qtbase/mkspecs/macx-clang/qmake.conf file for QMAKE_MACOSX_DEPLOYMENT_TARGET value. In my checkout it says 10.10. > On 19. Feb 2018, at 15:33, Nuno Santos wrote: > > Hi, > > I’m wondering how can I find the minimal OS X version that Qt 5.10

Re: [Interest] 5.10 WebEngine Compiler can not find existing File

2018-01-10 Thread Alexandru Croitor
Hi, I think you should create a bug report, and also specify your environment, configure line, and build invocations. Thanks. > On 10. Jan 2018, at 16:39, Oliver Niebuhr > wrote: > > Hello List. > > With the latest Qt 5.10 Git Merge, I always run into the

Re: [Interest] WebEngine with Intel Graphics Card

2017-10-26 Thread Alexandru Croitor
nks for your response. So any idea how can we resolve it? Any solution you are aware of or I should search in bugs? Regards, Sudhir From: Alexandru Croitor [mailto:alexandru.croi...@qt.io] Sent: Thursday, October 26, 2017 4:21 PM To: Sudhir Sharma <sudhir.sha...@mindtree.com<mailto:sudhir.s

Re: [Interest] WebEngine with Intel Graphics Card

2017-10-26 Thread Alexandru Croitor
Hi, We get quite a few bug reports with issues regarding intel graphic cards, and their drivers. So it's plausible that you might have issues because of that. On 26. Oct 2017, at 12:20, Sudhir Sharma > wrote: Hi, In Windows 10

Re: [Interest] QtWebEngine Linux navigator object

2017-09-13 Thread Alexandru Croitor
system functions. > > > > On Fri, Sep 8, 2017 at 1:55 PM, Alexandru Croitor > <alexandru.croi...@qt.io> wrote: >> Hi, >> >> The relevant code that finds the maxTouchPoints value is int >> qtwebengine/src/3rdparty/chromium/ui/base/touch/touch_devi

Re: [Interest] QtWebEngine Linux navigator object

2017-09-08 Thread Alexandru Croitor
Hi, The relevant code that finds the maxTouchPoints value is int qtwebengine/src/3rdparty/chromium/ui/base/touch/touch_device_linux.cc inside the MaxTouchPoints() function. That function iterates over the available touchscreens (not touchpads though). Thus my initial guess is that the

Re: [Interest] Mac: a bit of 10.9 love

2017-08-03 Thread Alexandru Croitor
Iirc the minimum deployment version was bumped to 10.10 in qt 5.9. That was also a change we had to do in webengine Alex > On Aug 3, 2017, at 17:12, Allan Sandfeld Jensen wrote: > >> On Donnerstag, 3. August 2017 15:18:45 CEST René J.V. Bertin wrote: >> Mac OS X 10.9

Re: [Interest] Qt 5.8 / 5.9 iOS run gives 'Mount Developer Disk failed' Xcode 8.3.3

2017-06-12 Thread Alexandru Croitor
Hi, See https://bugreports.qt.io/browse/QTCREATORBUG-18380 On 12 Jun 2017, at 12:43, ekke > wrote: * updated from OSX 10.11.6 to 10.12.5 * updated Xcode from 8.2 to 8.3.3 * updated iOS devices from 10.2.1 to 10.3.2 now from Qt

Re: [Interest] Error building Qt 5.8 with Xcode 8

2017-05-19 Thread Alexandru Croitor
nd utility "xcodebuild", not a developer tool or in PATH Note that xcodebuild is in /usr/bin and that path in is PATH I installed XCode via App Store Calogero On Fri, May 19, 2017 at 6:17 PM, Alexandru Croitor <alexandru.croi...@qt.io<mailto:alexandru.croi...@qt.io>>

Re: [Interest] Error building Qt 5.8 with Xcode 8

2017-05-19 Thread Alexandru Croitor
Hi, If you grep for the message, you can find that it's printed in qtbase/mkspecs/features/mac/default_pre.prf It checks for xcode by running "/usr/bin/xcrun -find xcodebuild 2>/dev/null" Try to run that from your terminal and check what's the output. One possible cause might be when you

Re: [Interest] How to handle Touch Input on C++ side when extending QQuickItem

2017-04-20 Thread Alexandru Croitor
ndo.pt>> wrote: Alexandru, Mac OSX, testing with trackpad and mouse. Regards, Nuno On 20 Apr 2017, at 09:36, Alexandru Croitor <alexandru.croi...@qt.io<mailto:alexandru.croi...@qt.io>> wrote: Hi. What platform are you testing on? On 20 Apr 2017, at 10:26, Nuno Santos &

Re: [Interest] How to handle Touch Input on C++ side when extending QQuickItem

2017-04-20 Thread Alexandru Croitor
Hi. What platform are you testing on? > On 20 Apr 2017, at 10:26, Nuno Santos wrote: > > Hi, > > I would like to understand how can I handle a QQuickItem touch input when > extending QQuickItem and creating my own item in C++ > > I can’t find documentation that

Re: [Interest] 5.8.0 Segfault on setPersistentCookiesPolicy

2017-02-01 Thread Alexandru Croitor
Hi. I would suggest running the python application under a debugger, and try to get a backtrace. That might give insight whether it is a Pythong binding issue of a Qt issue. An alternative would of course be to rewrite the small example in C++, and check if that works. > On 01 Feb 2017, at

Re: [Interest] TypeError during cythonize

2017-01-26 Thread Alexandru Croitor
Hi, In case you are using PyQt, I would suggest you will get higher response rates at the PyQt mailing list, because this particular curiosity does not seem related to the internal Qt code. On 25 Jan 2017, at 21:38, Frank Rueter | OHUfx > wrote: Hi all,

Re: [Interest] webenginewidgets and Qt 5.8 for WinRT armv7 kit

2017-01-25 Thread Alexandru Croitor
Hello, WebEngine is not supported on WinRT platform. It works only on Windows Desktop, Linux and macOS. Regards, Alex. > On 25 Jan 2017, at 13:30, Alexander Dyagilev wrote: > > Hello, > > Says: > > Project ERROR: Unknown module(s) in QT: webenginewidgets > > I could

Re: [Interest] Is it possible to have video files bundled as an app resource and have them played by Qml?

2016-11-07 Thread Alexandru Croitor
Hi, from Qt 5.4.0 changes file: rcc now supports an optional, two-pass compilation that improves build times for large resource bundles. This feature can be enabled by adding "CONFIG += resources_big" to your .pro file. Note that this feature may interfere with builds that enable link-time code

Re: [Interest] WebEngineView on Android

2016-10-17 Thread Alexandru Croitor
Hi, As far as I'm aware, there are no plans to make WebEngine (WebEngineView) work on Android. Regards, Alex. On 14 Oct 2016, at 20:44, Charles-Élie Gentil > wrote: Hello, I'm working on a project using a Web interface. This project should be

Re: [Interest] TextField_QMLTYPE_16 QVariant(Invalid) QRect(0, 0 0x0)

2016-10-14 Thread Alexandru Croitor
Hi, You can check if this patch will help remove the messages. https://codereview.qt-project.org/#/c/172572/ Regards, Alex. On 28 Sep 2016, at 16:44, Alexandru Croitor <alexandru.croi...@qt.io<mailto:alexandru.croi...@qt.io>> wrote: You don't have to do anything with a

Re: [Interest] TextField_QMLTYPE_16 QVariant(Invalid) QRect(0, 0 0x0)

2016-09-28 Thread Alexandru Croitor
You don't have to do anything with accessibility. It happens in qt internals, if Qt was compiled with accessibility support. > On 28 Sep 2016, at 16:38, Jason H wrote: > > > Thanks for the pointer, but I'm not doing anything with accessibility. :-/ > >> Previously when I have

Re: [Interest] TextField_QMLTYPE_16 QVariant(Invalid) QRect(0, 0 0x0)

2016-09-28 Thread Alexandru Croitor
Hi. Previously when I have seen these messages, it had to do with some accessibility property on the quick item, might be the case for you as well. I can't recall from the top of my head which one it was, but you can iteratively go through the TextField and ancestors QML files, and try to

Re: [Interest] Using QtQuick Controls 2 on android

2016-09-07 Thread Alexandru Croitor
If my memory serves, it used to work about a year ago with Qt 5.5 + Quick Controls 1, because I tested a QML app on an Android emulator. Don't know what changed now. On 31 Aug 2016, at 18:43, Wolfgang Baron > wrote: Your comment about the

Re: [Interest] Myanmar-QWERTY crashes OS X application

2016-08-22 Thread Alexandru Croitor
Hi, I tried reproducing your issue, and wasn't successful, no crash happens. I have OSX 10.11.5, Official Qt 5.7.0, only two languages installed, British and Myanmar-QWERTY, and I'm using the auto-generated Qt-Creator QMainWindow example. After launching the application, I try to switch the