Introduction to Qt Designer
There are two types of GUI applications in Qt, namely Qt Quick Application and Qt Widgets Application. In this book, we will cover mostly the latter, as it is the standard way of designing a GUI for desktop applications, and Qt Quick is more widely used for mobile and embedded systems:
- The first thing we need to do is to open up Qt Creator and create a new project. You can do so by either going to
File|New FileorProject, or by clicking theNew Projectbutton located at the welcome screen:

- After that, a new window will pop up and ask you to pick the type of project you want to create. Choose
Qt Widgets Applicationunder theApplicationcategory and clickChoose..., Then, create a name for your project (I have chosenChapter2for mine) and select the project directory by clicking theBrowse...button:

- Next, you will be asked to select a kit for your project. If you are running this on a Windows system and you have Microsoft Visual Studio installed, you can pick the...