Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
A GUI application is an application that uses a GUI ('Graphical User Interface'). In other words: it is an application that uses windows/dialogs with visual elements on which the user can click or navigate to with the keyboard. Most games are GUI applications, with the exception for text-adventures.
In Qt Creator, a GUI application is a Qt Creator project type with the following line:
QT += gui |
Note that this does not indicate that the program uses a GUI: it might just use non-visual Qt classes, making the program appear as a console application.
#------------------------------------------------- |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.