I just started maintaining a set of embedded Python plugins for a Qt application. I\'m also new to both PyQt and Python, so bear with me.
I use a QTreeWidget that shows a file listing so that a user can copy files to a directory. I want to disallow the user to copy the files to the same directory.
Is there a preferred way to detect when all of a QTreeWidgetItem\'s children are marked as hidden?Currently, I\'m iterating over all of them every time any of them are hid开发者_StackOverflow中文版den
I have a QTreeWidgetItem with two columns of data, is there any way to make only the second column editable? When I do the following:
I am unable to properly insert a QTreeWidgetItem at a specific index, in this case I am removing all QTreeWidgetItems from the tree, doing a custom sort on their Date Objects and then inserting them b
Is it possible to have individual indentation of items in a QTreeWidget? In specific, I have have a column containing both text,开发者_开发知识库 icon and for some of them a CheckBox. The items witho
I have a list of QTreeWidgetItems (with children) in a QTreeWidget. I do not use a model for my data.