4,966 questions
0 votes
0 answers
87 views
How do I print to application output window when debugging python in Qt Creator IDE?
I'm debugging a python project (pyproject) in Qt Creator using built-in debugger. Python print() outputs only to Debugger Log window, where it's mixed with a lot of actual debugger output making it ...
1 vote
1 answer
78 views
How to open/close the bottom panel using shortcuts in Qt Creator?
I use Qt Creator 17.0.1. I want to open and close the bottom panel (the one that shows Issues, Search Results, Application Output, etc.) using keyboard shortcuts: Which shortcuts can do this?
1 vote
1 answer
60 views
Qt Creator does not recognize \ character as Doxygen prefix
At the moment, I write Doxygen keywords as @brief, but I would like to write \brief. The problem is that when I start typing the \ character, Qt Creator does not provide Doxygen keyword completion. It ...
-3 votes
1 answer
78 views
QT Creator 17.0.1: Clang-Tidy interface looks nothing like documentation
I'm trying QT Creator's Clang-Tidy interface. The documentation suggests I'll see something usable and aesthetically appealing, like this: The reality is a vomit of command-line output, like this: ...
0 votes
0 answers
50 views
C++: Using QtCreator on macOS without Xcode
I'm completely new/inept at computer things. I'm taking an intro CS course and we're using QtCreator. I have a Mac with a software version (Sonoma 14.8) that can't be updated to the version that's ...
0 votes
0 answers
61 views
Root for relative includes in Qt Creator
I have a C++ project which uses CMake as a build system. Upstream recently refactored the code, moving most of the project’s own code to a subdirectory. For example, foo/foo_base.hpp is now in subdir/...
0 votes
0 answers
29 views
How to edit or create a shortcut in toolbar in Qt_creator software
I want to edit the toolbar in qtcreator and add my icons and shortcut to it. Is it possible? How? i tride right click.I tried every possible way I could think of, but it wasn't successful. I searched ...
0 votes
0 answers
57 views
QT creator don't display qt project
I was coding locally in C++ Qt project. I was able to open project by selecting it from list in initial screen of Qt Creator version 16.0.2 (community). However, after I created git repository in ...
0 votes
0 answers
26 views
Qt Creator not populating Issues tab when using wrapper script around CMake
I am working on a project which uses a wrapper script around CMake to build its artifacts (upstream decision). Building directly with cmake works for some artifacts, but there is the risk of artifacts ...
0 votes
0 answers
77 views
windowsvista style causes hover animation to 'flicker' or 'jitter'
When I set 'windowsvista' as the style, hovering over widgets causes them to flicker. See linked GIF for details: Flicker issue when hovering Here is the code to reproduce it in a stock standard fresh ...
1 vote
1 answer
53 views
Debug third party library code in QtCreator in a CMake project
I need to be able to debug internals of calls to OpenCV functions in my code, using QtCreator. I did the following: Downloaded OpenCV source code (from here: https://github.com/opencv/opencv) ...
1 vote
0 answers
79 views
Qt Creator does not link Android compiler to Kit
I'm trying to set up Qt Creator for Android development using Qt 6.9.1 on Windows 10. The SDK, NDK, and emulator are all detected correctly in Edit > Preferences > Devices > Android. However, ...
0 votes
1 answer
65 views
Frameless window flag in QT creator program is ignored in debian, but accepted in ubuntu and wsl
I am working from Ubuntu, and my friend has a minimal Debian system. His system uses x11 and openbox, and the login manager is lightdm. On my system, I compiled a QT-Creator application in which the ...
0 votes
0 answers
153 views
QSystemTray issues, kf.statusnotifieritem: KDE platform plugin is loaded but SNI unavailable
I'm trying to set up a tray icon for an app I'm developing in Qt with C++ I think it is pretty straightforward but I'm running into an issue, QtCreator throws: kf.statusnotifieritem: KDE platform ...
1 vote
1 answer
229 views
How to get Qt Creator to support C++20 in its editor with CMake
I have a CMake-based Qt project that I'm developing with Qt Creator. Recently I enabled C++20 support with CMake via set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(...