Posts Tagged ‘qt creator’

Qt – 3 Methods Of Adding & Integrating Designer Forms

The Qt Designer tool allows us to create forms for our application in a visual manner, freeing us from the tedium of hand-coding. While this saves time, it’s important to understand the various ways Qt creates these forms and by extension, the methods at our disposal to integrate these forms into a larger application.

In this post we’ll look at the 3 main technical options Qt Designer employs to serve this function:

  • Aggregation as a pointer member
  • Aggregation
  • Multiple Inheritance

We’ll also see examples of each method in practice. By the end of this post we should have a good grasp on the various ways we can use Qt Designer to create and integrate designer forms into a larger application.

Read More