qtskins

Does qt 4.5 have any skins?


I am developing for the first time using qt 4.5. I am developing a desktop app that will run on windows xp/vista.

The client would like to have a skin that assemblies a softphone, or something similar.

Does qt come with any skinning engine? Is it possible to create skins using qt?

Many thanks,


Solution

  • Yes, you can write style sheets to customize the look of your application. The syntax is like CSS and gives you many possibilities. If you just want all your buttons to be red, for example:

    QPushButton {
      color: red;
    }