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.5k Topics 34.7k Posts
  • Created new project, only seeing CMakeLists.txt file

    Moved Unsolved
    7
    0 Votes
    7 Posts
    149 Views
    B

    I was able to resolve this issue by adding CMake to the PATH (I'm on Windows), I could then update the Kits configuration to include CMake, and the project could then be built. I ran through the installation/getting started tutorial and that was not mentioned.

  • 0 Votes
    2 Posts
    64 Views
    cristian-adamC

    Remove the Qt version from the Kit. It's obviously wrong.

  • Auto-complete only show up when pressing ctrl + space

    Unsolved
    3
    0 Votes
    3 Posts
    86 Views
    N

    Still looking for solution but have yet to found any. As I mentioned above it is just posts about vintage QT Creator version. Any help would be greatly appreciated.

  • “at least one required feature is not present” error

    Solved
    4
    0 Votes
    4 Posts
    116 Views
    W

    @cristian-adam Thank you so much. It worked!

  • 0 Votes
    3 Posts
    166 Views
    P

    @Money Hi, today i faced exactly the same problem. Thus found your question through a google search. The problem seems to go away if I turn a setting on. Go to Edit->Preferences->Qt Quick->QML/JS Editing tab. Then tick 'Use custom command instead of built-in formatter'. In my case this option is now marked checked along with 'Enable auto format on file save'.
    Now I don't have this weird issue anymore.

  • little bug when creating Q_OBJECT C++ classes

    Moved Unsolved
    11
    0 Votes
    11 Posts
    305 Views
    G

    The issue is that QT Creator does not capitalize the first letter of the variable when it adds a word to the start when using the refractor menu option.

    The MOC file has it automatically renamed. As the MOC file is constantly regenerated I will need to correct the function definitions and declarations.

  • How to configure Visual Studio to recognize Qt source?

    Moved Unsolved
    1
    0 Votes
    1 Posts
    44 Views
    No one has replied
  • 0 Votes
    2 Posts
    80 Views
    SGaistS

    Hi,

    From a quick look at the forks of the project, this one seems to have something for Qt 6.

  • 0 Votes
    2 Posts
    123 Views
    cristian-adamC

    Try out Qt Creator 16.0.0. We changed the order of searching tools on the machine that could unpack a 7z file.

    Otherwise do try to install https://www.7-zip.org/ on your machine.

  • QToolBar Icons Not Showing

    Solved
    6
    0 Votes
    6 Posts
    138 Views
    Z

    I solved this by loading the icons into the actions using an absolute path. I know it isn't pretty, portable, or standard, but it works for me on my computer. The only place this app will ever be used.

    QString openIcon = "absolute path to my icon image"; ui->actionOpen->setIcon(QIcon(openIcon));
  • Qt VS Tools not saving Qt version

    Unsolved
    2
    0 Votes
    2 Posts
    86 Views
    S

    Steps to reproduce:
    Open Visual Studio 2019.
    Navigate to Extensions → Qt VS Tools → Qt Versions.
    Click Add and select qmake.exe from the msvc2017_64 folder of my Qt installation.
    Click OK (no error messages appear).
    Reopen Qt Versions—the list is empty again.
    Troubleshooting attempted:
    Restarted Visual Studio after adding the Qt version.
    Ran Visual Studio as Administrator.
    Checked the registry entries under HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\16.0\QtProject but found no Qt versions listed.
    Tried reinstalling the Qt VS Tools extension.
    Verified that my Qt installation is working by running qmake --version in the command prompt.

  • All kits greyed out in QtCreator

    Moved Solved
    11
    0 Votes
    11 Posts
    230 Views
    SGaistS

    @batguano it can but you have to explicitly select it.

  • How to build wxWidgetsets project using Qt Creator?

    Solved
    15
    0 Votes
    15 Posts
    257 Views
    K

    Ok. Finally solved everything. Checked compiler output and wx-config shell execution doesn't work in case of QMAKE_CXXFLAGS like it works in LIBS. So I changed this:

    QMAKE_CXXFLAGS += `/home/dibo/programowanie/wxWidgetsInstallGTK/bin/wx-config --cflags`

    To what this command exactly return:

    QMAKE_CXXFLAGS += -I/home/dibo/programowanie/wxWidgetsInstallGTK/lib/wx/include/gtk3-unicode-static-3.2 -I/home/dibo/programowanie/wxWidgetsInstallGTK/include/wx-3.2 -D_FILE_OFFSET_BITS=64 -D__WXGTK__ -pthread

    And now everything works perfectly, even code completion. Important -D__WXGTK__ was missed because gcc was called without what wx-config return

  • 0 Votes
    2 Posts
    119 Views
    SGaistS

    Hi,

    As already warned: please don't create the same thread in multiple sub-forums. One is enough.

    Duplicate

    Closing this one.

  • clangd and Kit Environment Variables

    Solved
    2
    0 Votes
    2 Posts
    129 Views
    M

    To answer my own question, I was setting OE_QMAKE_CFLAGS and OE_QMAKE_CXXFLAGS with those values. This appears to be what it was pulling from.

    By removing these and instead moving it to the Platform codegen flags and Platform linker flags for the compiler settings, I seem to achieve the result that I want.

    It's a little more duplication than I would want, but it is functional.

  • 0 Votes
    3 Posts
    939 Views
    R

    Vote for it here: https://bugreports.qt.io/browse/QTCREATORBUG-32574

  • 0 Votes
    4 Posts
    315 Views
    C

    I've found a workaround: reload kernel modules hid_generic and hid_multitouch

    sudo rmmod hid_generic sudo modprobe hid_generic sudo rmmod hid_multitouch sudo modprobe hid_multitouch
  • Github copilot can't sign out

    Unsolved
    1
    0 Votes
    1 Posts
    126 Views
    No one has replied
  • 0 Votes
    1 Posts
    70 Views
    No one has replied
  • Qt Designer Active Button

    Unsolved
    6
    0 Votes
    6 Posts
    194 Views
    M

    @Adka Do you mean something like this?
    alt text

    In Qt designer, you can set the button property to checkable, then you can right click the button and create or add it to a QButtonGroup, then select the group, and in the properties you can check the "exclusive" property for only one to be active at a time.