Some QLineEdit questions

pyqt, python, qlineedit

Solution

Pretty much like this:

linedit = QtGui.QlineEdit()
linedit.setPlaceholderText("My grey text which disappear when I click on it")
linedit.setEnabled(False)

with Qt minimum version 4.7 and latest PyQt 4.

Problem

I'm using Python with PyQt and I have a few problems with my `QLineEdits`. - First of all, I want to put text on them, but not the regular one, I mean the transparent text that disappears when you click on the `QLineEdit`. - How can I disable clicking on my `QLineEdit`?

Original source