Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
515 views

stable sorting QTreeWidgetItems in QTreeWidget?

I have a list of QTreeWidgetItems (with children) in a QTreeWidget. I do not use a model for my data. From another window in my application the user can navigate thru the same set of data (viewed ...
2
votes
3answers
1k views

Is it possible to sort numbers in a QTreeWidget column?

I have a QTreeWidget with a column filled with some numbers, how can I sort them? If I use setSortingEnabled(true); I can sort correctly only strings, so my column is sorted: 1 10 100 2 ...
1
vote
1answer
85 views

QTreeWidget and PyQt: Methods to save and read data back in from file

I'm working on a project that contains a QTreeWidget. This widget will have Parent nodes with childs nodes and or other siblings nodes. Attached to each node will be a unique ID in the form of an ...
1
vote
2answers
160 views

qt 4.7 removeChild() and memory

Im writing a c++ qt application. In one part I'm creating a QTreeWidget. The user has all possibilities to create and delete entries in that tree. So when the user creates a item he will call a ...
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
423 views

Disable a column of a QTreeWidgetItem or remove set CheckBox

I have QTreeWidgetItem set in a QTreeWidget with 2 columns. Both cells got a CheckBox set by setCheckState(...). When the user unchecks the CheckBox in my first column I uncheck the second CheckBox ...
1
vote
1answer
789 views

how to set contextmenu fro qtreewidgetitem in qt

I would like to know how can we set context menu for a qtreewidgetitem that is if i right click on each item in my qtreewidget,i should have some options like edit,delete ..i would like to know how ...
1
vote
2answers
687 views

Individual QTreeWidgetItem indentation

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 without a CheckBox ...
1
vote
1answer
649 views

HTML and CSS in Qt4 (which) widgets?

Can somebody tell me where in Qt gui can I use HTML? Which widgets do support HTML? Or more specific: why HTML doesn't work in QTreeWidgetItem and QTreeListItem? I'm trying to make some of the ...
0
votes
1answer
24 views

Why is there a 1 at the top of a QTreeWidget?

There is a 1 at the top of a QtreeWidget. How do i fix it?
0
votes
1answer
14 views

QTreeWidget Passing multiple Items (more then one selection) through a function

I am a student programmer using Qt to build a GUI for work. I have ran into an issue; more or less and inconvience of sorts wiith multiple selections in the QTreeWidget. My GUI has a main interface ...
0
votes
1answer
23 views

QTreeWidget::currentItem What returns when there is nothing selected?

I am a student programmer using Qt to develop a GUI application. I am using a QTreeWidget to display some properties stored in a vector. In the same window I have the buttons edit, copy, and delete. ...
0
votes
2answers
98 views

PyQt QTreeWidget 'expanded' signal not being caught

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 have an implementation of a QTreeWidget in one dialog where ...
0
votes
1answer
458 views

QTreeWidget for Projects

Well. I'm working on an IDE. Some of you maybe saw a post about it. Well, i have no clue of how QTreeWidget & QtreeWidgetItem works since can't find a demo and the documentation doesn't help. ...
0
votes
2answers
430 views

QTreeWidget : disable a line but not the subtree

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. Thus, I want to disable just one line ...
0
votes
1answer
77 views

Is there a way to detect when all child items within a QTreeWidgetItem have been marked 'hidden'?

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 hidden.
0
votes
2answers
724 views

QTreeWidget insertTopLevelItem - index given not accurately displayed in Tree?

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 ...