Skip to content
Qt 6.11 is out! See what's new in the release blog
  • 0 Votes
    2 Posts
    58 Views
    SGaistS
    Hi, Boot2Qt being a commercial offering, you would need to contact the Qt Company directly about that matter.
  • How could I rise to UDP speed ?

    Solved General and Desktop udp udp stream socket
    30
    0 Votes
    30 Posts
    1k Views
    JonBJ
    @Joe-von-Habsburg Ah ha! One of us should have mentioned this when you said about sender packet size :(
  • pyside6-deploy failing on macOS

    Unsolved Qt for Python
    1
    0 Votes
    1 Posts
    27 Views
    No one has replied
  • Qt Quick2

    Unsolved QML and Qt Quick
    6
    0 Votes
    6 Posts
    147 Views
    Christian EhrlicherC
    Please take a look at the documentation of qt_add_qml_module. There you can see under which resource path the image is located. https://doc.qt.io/qt-6/qt-add-qml-module.html#resource-prefix Also please don't post pictures but actual text.
  • Properly threading model for high-performance UDP pipeline

    Unsolved General and Desktop
    3
    0 Votes
    3 Posts
    103 Views
    JonBJ
    @marlonbuilder For your choice of using a thread --- and especially if you are not familiar with threads and their requirements --- as @jsulm has said it is not clear why you need one at all. Try it from the main event loop and only look into threads if there is a problem. Newcomers to Qt often rush into sub-threads when there is no need. For your updating of widget(s). Assuming you have some widget listening for dataChanged() signal. If you say that is happening too frequently and thereby causing lag --- is it? have you actually tried? if you are only emitting dataChanged() "a certain number of times per second" that may be fine, depending on how many times --- then you have a couple of choices. Basically you would want to "delay" emission of signal causing update so that you can "accumulate" multiple updates into one update for redraw. You might interpose a QIdentityProxyModel between your model and the widget to control signal emission. Or since you seem to have a setStat() which calls dataChanged() explicitly itself you might do it there. You would introduce a QTimer --- single shot or repeating --- which you start when setStat() is called and only when that times out would you emit a dataChanged(), with the data as it is at that point, having accumulated/ignored the earlier updates. Make the frequency of the timer sufficient for user, e.g. does user really need to see updates more than, say, 10 times per second? Although the situation is rather different, the principle is similar to that recently discussed in my post at https://forum.qt.io/topic/164540/spin-box-and-slider-tracking/11.
  • Qt6.2.4 Text Cursor Display Issue

    Unsolved QML and Qt Quick
    1
    0 Votes
    1 Posts
    39 Views
    No one has replied
  • QtCreator 19.0.1 Total crash when copying source code

    Unsolved Qt Creator and other tools
    3
    0 Votes
    3 Posts
    158 Views
    Andy314A
    @uauauaua said in QtCreator 19.0.1 Total crash when copying source code: For some time now, I've been experiencing sporadic problems with Qt Creator. When a source code line or block is selected, the PC enters an infinite loop if I try to copy the source code to another location. This then requires aborting and restarting. With Qt Creator 19.0.1, the error occurs immediately. Working with version 19.0.1 is absolutely impossible. This is all running on Windows 11 Pro Edition, version 25H2, installed on July 29, 2025, OS build 26200.8246, Windows Feature Experience Pack 1000.26100.297.0 I have similar experiences with code folding. Try to expand all code before pasting. Maybe this can give a hint to the problem.
  • 0 Votes
    10 Posts
    2k Views
    JKSHJ
    @DinoNZ said in Installing Qt Automotive Suite : Qt Automotive Suite option not available: Is it possible to get an Open Source license for QT Automotive Suite? I'm a private individual not a company so am just looking at the open source trial versions for now. Qt Automotive Suite was based on Qt 5.15. It is no longer being maintained or offered, but its source code is open: https://doc.qt.io/QtAutomotiveSuite/qtas-install.html#build-from-source (it is basically a "bundle" of multiple modules that are relevant to the automotive industry) For a modern automotive solution, see Qt for Android Automotive: https://www.qt.io/blog/qt-for-android-automotive-6.11-released https://doc.qt.io/QtAndroidAutomotive/qtaa-overview.html
  • 2 Votes
    7 Posts
    4k Views
    A
    Qodeassist is so much better
  • Call function from ancestor. How?

    Unsolved QML and Qt Quick
    1
    0 Votes
    1 Posts
    50 Views
    No one has replied
  • PySide 6.11 Build issue on macOS

    Solved Qt for Python pyside qt for python
    3
    0 Votes
    3 Posts
    107 Views
    F
    See PYSIDE-3286 for reference.
  • 0 Votes
    6 Posts
    261 Views
    SebastianMS
    Update Qt Creator conan mechanism In file c:\Qt\Tools\QtCreator_v20\share\qtcreator\cmake-helper\package-manager.cmake in line 115 (file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" ") generates CMakeLists.txt with hardcoded default profile A little bit higher set(PROFILE_FILE "") if (CONAN_HOST_PROFILE OR CONAN_BUILD_PROFILE) if (CONAN_HOST_PROFILE) set(PROFILE_FILE "${PROFILE_FILE} -pr:h \"${CONAN_HOST_PROFILE}\"") endif() if (CONAN_BUILD_PROFILE) set(PROFILE_FILE "${PROFILE_FILE} -pr:b \"${CONAN_BUILD_PROFILE}\"") endif() else() set(PROFILE_FILE "-pr:a \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\"") endif() and substitute in line 134 (before adding above lines) from -pr \\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\\" to "${PROFILE_FILE}".
  • Running application with user privillegions.

    Unsolved General and Desktop
    47
    0 Votes
    47 Posts
    3k Views
    SGaistS
    @nicholas_ru said in Running application with user privillegions.: Yes, of course. That is still a bit cryptic regarding your "but very difficult" answer. What difficulties do you have ?
  • 0 Votes
    5 Posts
    395 Views
    Z
    Ok. WIll try. Thank you .
  • How to deploy a Qt application on iOS and iOS simulator?

    Unsolved Mobile and Embedded
    1
    0 Votes
    1 Posts
    126 Views
    No one has replied
  • 0 Votes
    1 Posts
    64 Views
    No one has replied
  • 0 Votes
    7 Posts
    359 Views
    J
    I've marked this as solved. Whilst I didn't get a perfect / ideal answer, I Did some good responses and enough information to make a decision for my use case. In the end I decided that a refactor would be too much work, and while i came up with other more elegant solutions, they really all just boiled down to an extra call to setGeometry, so i ended up going with the existing fix. Thanks everyone though.
  • Qt Creator 19 - Android manifest file editor not working

    Unsolved Qt Creator and other tools
    1
    0 Votes
    1 Posts
    117 Views
    No one has replied
  • Qt Creator 19.0.1 released

    Unsolved Qt Creator and other tools
    1
    2 Votes
    1 Posts
    69 Views
    No one has replied
  • Cross Compile Qt6.8.3 for Arduino portenta X8

    Unsolved Installation and Deployment
    1
    0 Votes
    1 Posts
    49 Views
    No one has replied