Hi everybody,
To color a QDialog (for example), I can do:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys
app = QApplication( sys.argv )
dialog = QDialog( )
dialog.palette().background().setColor(Qt.blue) # @
dialog.show()
app.exec_()
But if I replace the line "@" by:
dialog.setForegroundRole( QPalette().Dark )
it seems it does not work: the color is the same with and without this line.
What is the problem?
Thanks
Julien
--
python -c "print ''.join([chr(154 - ord(c)) for c in '*9(9&(18%.\
9&1+,\'Z4(55l4('])"
"When a distinguished but elderly scientist states that something is
possible, he is almost certainly right. When he states that something is
impossible, he is very probably wrong." (first law of AC Clarke)
_______________________________________________
PyQt mailing list [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt