views:

276

answers:

3

i need to change my form look and feel and i dont know : what i need to download and install ? is there any ready to use look and feel installed into qt library ? i am using windows and qt 4.4.3

A: 

check this out

Phobia
You didn't have a lot of words in your answer, did you? Note to anyone else, this is an article talking about how to modify the look and feel of widgets in various ways... if you want instructions that work with Qt 3.
Caleb Huitt - cjhuitt
+1  A: 

Take a look at Widget Styles and Stylesheets (both linked to Qt 4.4 since that's your version).

Edit: In other words, you don't need to install anything else. Styles are built into Qt.

Adam W
A: 

Look-and-feel is pretty vague -- you can change the GUI application style by adding the -style STYLENAME command line argument when you run the program. You can change to the application to run under motif, windows, platinum, or any other custom styles that you might have compiled (such as plastique).

Here is more information about it in the Qt Docs: http://doc.trolltech.com/4.6/qapplication.html#QApplication

swanson