Question

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,

Was it helpful?

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;
}

OTHER TIPS

Yes. It's called styling.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top