Hi all, I have this in pygtk:

Qt Code:
  1. self._model = gtk.TreeStore(gtk.gdk.Pixbuf, object, str, str, bool)
  2. ...
  3. self._model.append(None, [None, None, gid, gid, False])
To copy to clipboard, switch view to plain text mode 

I want to convert this code to pyqt4. I'm using a QStandardItemModel.

Qt Code:
  1. self._model = QStandardItemModel(self)
  2. ...
  3. self._model.appendRow(????????????????)
To copy to clipboard, switch view to plain text mode 

Is there something similar to gtk.TreeStore in pyqt4?

Thanks