I have a QStandardItemModel, I have some parent and some childs in the model.
Qt Code:
  1. child = self.model.item(parent).child(0)
To copy to clipboard, switch view to plain text mode 
This will give me the first child if the parent. The question is: How can I get the next child of parent?

Thanks