Skip to content

Qt Creator and other tools

Have a question about Qt Creator, our cross-platform IDE, or any of the other tools? Ask here!
7.8k Topics 36.3k Posts
Qt 6.11 is out! See what's new in the release blog
  • Qt Creator 20 RC released

    Unsolved
    1
    1 Votes
    1 Posts
    33 Views
    No one has replied
  • Remote device: "access via" doesn't work

    Unsolved
    1
    0 Votes
    1 Posts
    30 Views
    No one has replied
  • Qt Creator, VSCode or CLion?

    Unsolved
    6
    0 Votes
    6 Posts
    367 Views
    cristian-adamC
    @chenwj said in Qt Creator, VSCode or CLion?: Meanwhile, using AI features in Qt Creator requires a commercial license. With Qt Creator 20 you can use the ACP Client to connect to an ACP Agent like Claude Agent, Codex CLI, or OpenCode and do any AI work. The ACP Client plugin is part of the OpenSource Qt Creator.
  • How to encode Creator run settings in cmake preset?

    Unsolved
    5
    0 Votes
    5 Posts
    404 Views
    A
    Ha, I got Jira to work. I'll keep an eye on the issue, thanks a lot!
  • qwindowgeometry not working as command line option

    Unsolved
    6
    0 Votes
    6 Posts
    318 Views
    JonBJ
    @Robert-Hairgrove Fair enough. If it were me I would try a quick one line Qt GUI program of my own to see whether it respects --qwindowgeometry (that's one of the command line arguments any Qt program picks up), plus save/restore if you're wanting to check that, to see where you start from.
  • 0 Votes
    2 Posts
    198 Views
    SGaistS
    Hi, Which version of Qt Creator are you talking about ?
  • Qt Creator 19 - Android manifest file editor not working

    Unsolved
    2
    1 Votes
    2 Posts
    308 Views
    sbelaS
    I have the same problem but in windows 10... did you find any solution ?
  • Qt Creator - streamline find current qml file usage?

    Unsolved
    1
    0 Votes
    1 Posts
    112 Views
    No one has replied
  • Qt Creator 19.0.2 released

    Unsolved
    1
    1 Votes
    1 Posts
    119 Views
    No one has replied
  • Anyone had success with compose-based devcontainers in Qt Creator

    Unsolved devcontainer docker compose
    2
    0 Votes
    2 Posts
    397 Views
    K
    @galkinvv Thanks for your workaround for this. It got me up and running. According to this We should be able to use mount-libexec and libexec-mount-point for this. However, I tried them and they don't work. Have you found out anything more about this? Kevin
  • QML Preview not working

    Unsolved
    3
    0 Votes
    3 Posts
    742 Views
    E
    [Using QtCreator 18.0.2 and Qt 6.7.2] I had the same issue and I solved it by adding "NO_CACHEGEN" under "qt_add_qml_module" in my CMakeLists.txt file. As far as I understand, this problem occurs because the Preview uses the file under build folder but your changes occur on your projects file (which are not exactly the same file) and this tag disables caching and thus solves the problem. qt_add_qml_module(appXXX URI XXX VERSION 1.0 NO_CACHEGEN
  • Qt Creator 20 Beta released

    Unsolved
    1
    1 Votes
    1 Posts
    150 Views
    No one has replied
  • Getting the size of the MainWindow

    Unsolved
    9
    0 Votes
    9 Posts
    840 Views
    Axel SpoerlA
    @hskoglund Using a timer can be anything between a waste of time and vain hope. It depends on the operating system, how showMaximized(), showNormal() and the like are handled. QWidget::windowState() reflects what has been ordered to the window manager. The problem is that the widget's geometry can change twice. First time when showMaximized() has been processed and widget->windowState().testFlag(Qt::WindowMaximized) returns true. Second time, when the window manager has applied decorations (i.e. title bar and window handles). A good place to look for inspiration is tst_QWidget::showMaximized() and showFullScreen(). The QTRY_ macros generally process events until either the predicate is true or a timeout is hit. They're not available in applications, but you can write your own methods that work for your use case.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • QtCreator 19.0.1 Total crash when copying source code

    Unsolved
    6
    0 Votes
    6 Posts
    662 Views
    aha_1980A
    @Andy314 and @Udo-Alt I tried to reproduce the problem, but could not reproduce this bug. Can one of you give exact instructions with sample code to reproduce this problem? Then it would be possible to create a fix. Regards
  • Display an image in a c++ program

    Solved
    12
    0 Votes
    12 Posts
    972 Views
    jsulmJ
    @JYG61 See "Topics Tools" at the top
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    39 Views
  • A Sincere Request: Please Bring AI Assistant to the Open-Source Edition of Qt Creator

    Unsolved
    7
    3 Votes
    7 Posts
    5k Views
    A
    Qodeassist is so much better
  • Qt Creator, CMakePresets and conan - can't use own conan profile

    Solved
    6
    0 Votes
    6 Posts
    645 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}".
  • Qt Creator 19.0.1 released

    Unsolved
    1
    2 Votes
    1 Posts
    180 Views
    No one has replied