Re: [PyQt] PlastiqueStyle issue

2011-09-18 Thread admin
On 18/09/2011 05:18 م, Tayfun Kayhan wrote: It seems there is no QPlastiqueStyle class in PyQt Class Ref, whereas there exists one in Qt Class Ref : http://www.riverbankcomputing.co.uk/stat

Re: [PyQt] PlastiqueStyle issue

2011-09-18 Thread admin
On 18/09/2011 04:27 م, Vincent Vande Vyvre wrote: Le 18/09/11 15:19, ad...@mbnoimi.net a écrit : Hi, No specific import is required for style     app = QtGui.QApplication(sys.argv)     app.setStyle(QtGui.QStyleFactory.

Re: [PyQt] PlastiqueStyle issue

2011-09-18 Thread Vincent Vande Vyvre
Le 18/09/11 15:19, ad...@mbnoimi.net a écrit : Hi, Where can I find QPlastiqueStyle class? I tried to use from PyQt4.QtGui import QPlastiqueStyle and app.setStyle("Plastique") sty = QPlastiqueStyle() app.

[PyQt] PlastiqueStyle issue

2011-09-18 Thread admin
Hi, Where can I find QPlastiqueStyle class? I tried to use from PyQt4.QtGui import QPlastiqueStyle and app.setStyle("Plastique") sty = QPlastiqueStyle() app.setPalette(sty.standardPalette()) but I got import error. what's wrong?