PDA

View Full Version : Get Default StyleSheet



vinzz38
27th May 2013, 16:43
Hello all,

Is there a way to get originals style sheet of widgets?

Thanks.

wysota
27th May 2013, 17:28
Default stylesheets of widgets are empty. The look you see is not drawn using stylesheets.

Santosh Reddy
27th May 2013, 21:25
By default QApplication (All QWidgets) will have a QStyle, not Style-sheet. You can get the default QStyle using QApplication::style();

vinzz38
20th June 2013, 12:37
Thanks Santosh.