Hi
I am considering forking and re-wrapping some Qt code, for use from PyQt.
What example code is there out there that could get me started quickly?
Clearly PyQt itself is a good source, but is there code that's much
simpler that could get me going with a simple case to start off with?
I'm m
If you are using a ListWidget, you can add a checkbox as follows:
item = QtGui.QListWidgetItem(text)
item.setCheckState(QtCore.Qt.Checked)
item.setFlags( QtCore.Qt.ItemIsSelectable |
QtCore.Qt.ItemIsUserCheckable |
QtCore.Qt.ItemIsEditable
Hi,
pls., do you have nobody example, howto create and use checkbox in listview?
Thank's
Milan
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
On 13.04.07 18:59:29, Lawrence Shafer wrote:
> I still cannot get a working application in PyQt 4. I do understand v3 enough
> to use it, but 4
>
> Anyway, would someone be kind enough to send me a ui generated in QT-Designer
> and a python script to dispay it? if it could just have a listbox
I still cannot get a working application in PyQt 4. I do understand v3
enough to use it, but 4
Anyway, would someone be kind enough to send me a ui generated in
QT-Designer and a python script to dispay it? if it could just have a
listbox and button to add a listItem that's (hopefully) all