Thursday, February 10, 2011

PyQt lineEdit with colors

Hi fellows!

I'm trying to format a Qt lineEdit text with colors.

 def __init__(self):
        QtGui.QMainWindow.__init__(self)
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)
        self.ui.lineEdit.setText("here be colors")

I searched a lot but only found customized drawing widgets with monstrous amounts of code. Is there any easier way to format the lineEdit box than customizing the whole?

0 comments:

Post a Comment