Search Results

1
vote
3answers
170 views

How can I redefine a built in keyboard shortcut’s behavior?

I am attempting to re-implement the Copy behavior for a QTextEdit object. The custom context menu I create works as expected when the 'Copy' button is clicked, but Ctrl+C isn't being handled correc …
0
votes
1answer
694 views

How to catch Ctrl+C key event with Qt when Ctrl is released before ‘C’?

I would like to call some custom copy code when the user releases Ctrl+C. When 'C' is released before Ctrl, Qt sends a key event that matches with QKeySequence::Copy. When Ctrl is rele …