In this project the Raspberrypi board is loaded with Ubuntu and is remotely accessed using VNC. The Raspberrypi board is also connected to the internet. Downloading and installing the fourth version, QT4 using commands are already discussed in a previous article. There is another article which discusses about how to start with programming in QT, a hello world program using QT.
The list includes âQt 4 Assistantâ, âQt 4 Designerâ, âQt 4 Linguistâ and âQt Creatorâ. The âQt 4 Assistantâ is basically provides help in the form of documentations related to the topics in QT. âQt 4 Designerâ is where the user can create a design and save it as a â.uiâ file which can then be used in QT projects. The âQt 4 Linguistâ provides a language view of the design created. The âQt Creatorâ is where all these things can be done in the same IDE which helps in creating a GUI using QT.
Click on the âQt Creatorâ and the following window opens up which includes options for creating a project as explained in the article hello world program using QT.
As soon as a new project is created the âEditâ window of the Qt Creator will open up. Expand the âFormsâ where the âmainwindow.uiâ can be seen listed.
Every component in the designer is represented as an object in the code in the editor and every object has a specific default name also. It is possible to change the name of the object as per the convenience of the user, necessary when using many numbers of buttons or other components. Right click on the âPush Buttonâ and the object name of the button can be modified by selecting the âChange object nameâ option.
For more detail: How to Create Buttons in Qt