PyQt lineEdit with colors
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 custom开发者_运维问答ized drawing widgets with monstrous amounts of code. Is there any easier way to format the lineEdit box than customizing the whole?
Maybe use a QTextEdit, and limit it to one line.
精彩评论