Hi,
I have a dll with a QStylePlugin in it. I can use it by putting the dll into a folder named styles next to the exe-file which is using it and by typing a code line like this:
Qt Code:
  1. QApplication::setStyle(QStyleFactory::create("stylename"));
To copy to clipboard, switch view to plain text mode 

How can I use it with PyQt in Python? I used the QStyleFactory already with the preinstalled styles, like
Qt Code:
  1. app.setStyle(QtGui.QStyleFactory.create("cleanlooks"))
To copy to clipboard, switch view to plain text mode 
But where do I have to put the dll so that the QStyleFactory in Python/PyQt will find it?
The custom style isn't in the key list of QStyleFactory in Python/PyQt.