2

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,

ant2009
  • 27,094
  • 154
  • 411
  • 609

2 Answers2

10

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;
}
feedc0de
  • 3,646
  • 8
  • 30
  • 55
sth
  • 222,467
  • 53
  • 283
  • 367
6

Yes. It's called styling.

Georg Schölly
  • 124,188
  • 49
  • 220
  • 267