tags:

views:

1708

answers:

3

Hello,

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,

+5  A: 

Yes. It's called styling.

Georg
+9  A: 

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;
}
sth
I think this isn't powerful enough for his application.
Georg
it is if he writes his widgets to get any stylistic info from the style sheet
Javier
+1  A: 

But what if i would like to change all of my application forms' look?

akostyanika