[PyQt] gtk.ListStore replacement in PyQt

praveen koduru prawin1111 at gmail.com
Fri Dec 17 09:59:25 GMT 2010


In my code I am using gtk.Liststore for for Storing the listitems. and later
to retrieve Listitems and their listItementries I am using the below.
liststore = gtk.Liststore( str, str, int, gtk.gdk.Pixbuf)

*For retrieving ListItems:*
  item = liststore.get_iter_first ()
       or
  item = liststore.iter_next(item)

*And For retrieving ListItemEntries:*
  liststore.get_value(item, 1) for 1st ListItemEntry.

Now I want to implement the above using PyQt. Can any one suggest How to
implement that.
FYI,
[["Alpha", "one", 1],
["Beta", "two, 2]
["gamma", "three", 3]]

For example Liststore is above, then
1st ListItem = ["Alpha", "one", 1]
1st ListItem & 1st ListItemEntry = "Alpha"

Thanks,
Praveen
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.riverbankcomputing.com/pipermail/pyqt/attachments/20101217/b274e7a8/attachment.html>


More information about the PyQt mailing list