Where is ui_mainwindow.h in Qt designer
-
Hi
The ui_xxx files are generated by the uic.exe tool
by reading UI files. they are not included into the project file but
referenced from the cpp file. Like
#include "ui_MainWindow.h"This is as intended. You should have no need to add or alter them.
-
ohh ok so behind the scenes QT is creating this header and UI object for us?
-
@adamchalkley2018 said in Where is ui_mainwindow.h in Qt designer:
ohh ok so behind the scenes QT is creating this header and UI object for us?
The
.ui
file is generated by a wizard (it's a template) and can be edited later with QtDesigner (also integrated in QtCreator).From the
.ui
file aui_object.h
file is generated byuic
and later compiled by the C++ compiler and linked to your executable.Hope that explains it a bit :)