Tagged Questions
The treewidget tag has no wiki summary.
1
vote
1answer
670 views
Python PYQT QTreeWidgetItem selected cell
I have QTreeWidget like this : http://img689.imageshack.us/img689/5207/pythoni.jpg
What should i do to get value from selected row and filename column ?
I have current selected item
item = ...
1
vote
1answer
846 views
Getting data from a QTreeWidgetItem inherited class
I have a class which inherits from QTreeWidgetItem and I intercept the click event.
I need to get another object from inside MY QTreeWidgetItem when I click the tree row, how can I do that??
1
vote
4answers
6k views
How can I find the selected item in a QTreeWidget?
I have a class that inherits QTreeWidget. How can I find the currently selected row?
Usually I connect signals to slots this way:
connect(myButton, SIGNAL(triggered(bool)), this, SLOT(myClick()));
...
0
votes
2answers
66 views
Displaying forms using Tree in Qt
I'm building a Qt plugin with multiple forms. I have a main form which has a tree widget placed on the left of the form.
I want to add items to this tree, such that clicking on these items would load ...