Override default copy/paste from QTextEdit
-
Hello,
I have a main window that has a
QTextEdit
and 3QAction
(copy, cut and paste), mapped on the default shortcuts (respectively ctrl+c, ctrl+x and ctrl+v). The goal of the actions is to copy/paste the contents of theQTextEdit
, but with extra-work (the contents is copied astext/plain
andapplication/json
MIME types).However,
QTextEdit
already implements its own copy/paste functions, with the same shortcuts. When I hit ctrl+c, it is always theQTextEdit
copy function that is used, instead of mine (so there is noapplication/json
in the clipboard...).How can I change this behavior, and use my functions instead? I saw that there is a QEvent::ShortcutOverride event, but I don't know how to use it... can I use it in an QObject::eventFilter() function? Or should I inherit from QTextEdit and override its QWidget::keyPressEvent() method?
The best for me would be to totally disconnect the default copy/paste from the
QTextEdit
and use only mine. I can inherit and try to mess up with the class (but how?), but the best solution would be that it works even with polymorphism (but the slots are not virtual).Thanks for your help :)
edit: QTextEdit::createMimeDataFromSelection() is not an option for me as I also have a
QLineEdit
and I'd like the same behavior with it (to not use its default copy/paste functions).