Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
QTreeWidget DoubleClick
I am trying to get the itemDoubleClick on the QTreeWidget to open a custom Dialog box. Does anyone know how to do that. Any advise would be appreciated. Thanks in Advance. I have had no success.
Adam Jones
You need to implement itemDoubleClicked() of QTreeWidget in your application.
-Segu,
He rather needs to catch itemDoubleClicked ( QTreeWidgetItem*, int) signal.
RE: QTreeWidget DoubleClick
Correct catch the signal, and in slot call a "show" for the dialog to be shown.
definitely, before showing you have to fill in that dialogue class
Thanks!
Alok