[Interest] SwiftUI vs UIKit

2025-04-01 Thread Turtle Creek Software
Apple announced today that UIKit is being deprecated, and apps will need to use SwiftUI rather than UIKit for App Store submissions, starting in 2026. Existing apps must update by 2027. How does that affect iOS apps developed with Qt? Thanks, Casey McDermott TurtleSoft.com ___

Re: [Interest] Intercept key bindings for QTextEdit subclass

2025-04-01 Thread Volker Hilsheimer via Interest
> On 1 Apr 2025, at 20:59, Josh wrote: > > Hi, > > I have a QTextEdit subclass that I want to intercept the key bindings for > (like Ctrl-X, etc.). If I reimplement QTextEdit::keyPressEvent(QKeyEvent *k) > I can get the keys and do whatever with them. But I actually want to ignore > the eve

[Interest] Intercept key bindings for QTextEdit subclass

2025-04-01 Thread Josh
Hi, I have a QTextEdit subclass that I want to intercept the key bindings for (like Ctrl-X, etc.). If I reimplement QTextEdit::keyPressEvent(QKeyEvent *k) I can get the keys and do whatever with them. But I actually want to ignore the event so it gets passed up and I can add it as a menu actio