I would like to add selection handles to a QTextEdit widget so that after the user selects text he or she can expand or shrink the selection in either direction. I understand support for this functionality has been formally added to Qt, but I only see Android mentioned. Is it available for desktop? Is it accessible from PySide? I'm guessing it is too recent for PySide to have the appropriate wrapper.
If selection handles are not formally available, I can imagine how to override the keyPressEvent so that CTRL-click expands or shrinks the current selection by jumping to the cursor's location. However, instead, I would prefer to have a visual cue that can be selected and dragged with a regular mouse-click. Are there graphical widgets that can be painted on top of a QTextEdit window and modified to behave like selection handles?