QTableWidget and edit mode
Unsolved
General and Desktop
-
@Vlad02
If I understand what you want (still not sure). https://stackoverflow.com/questions/2804115/how-to-connect-focus-event-from-qlineedit shows to subclassQLineEdit
in order to override itsfocusIn
/OutEvent
s and emit a signal for them. Which you could attach a slot to to do the samedeselect
/selectAll()
principle as in the timer. Is that what you are looking to do?