how to get a 0 index SIGNAL(sectionMoved(int, int, int)) for QHeaderView
Unsolved
General and Desktop
-
Hi I have QtreeView and I get
QHeaderView* hdr = header()
connect(hdr, SIGNAL(sectionMoved(int, int, int)), _csvViewerHandle, SLOT(slotSectionMoved(int, int, int)));
When I doing a column drag from 4th coulumn to 0th Column , I am never able to drag it to 0th Columns
I always
connect(hdr, SIGNAL(sectionMoved(int, int, int)), _csvViewerHandle, SLOT(slotSectionMoved(int, int, int)));
void sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex)
I always get newVisualIndex as 1 , even when I drag it to first column . Could you please let me know the reason why
-
Hi,
What version of Qt are you using ?
Can you show the complete code you use to setup your QTreeView ?