MCPcopy Create free account
hub / github.com/alpha-liu-01/SpeedyNote / inputMethodQuery

Method inputMethodQuery

source/MainWindow.cpp:8367–8376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8365}
8366
8367QVariant MainWindow::inputMethodQuery(Qt::InputMethodQuery query) const {
8368 // Forward IME queries to the focused widget
8369 QWidget *focusWidget = QApplication::focusWidget();
8370 if (focusWidget && focusWidget != this) {
8371 return focusWidget->inputMethodQuery(query);
8372 }
8373
8374 // Default handling
8375 return QMainWindow::inputMethodQuery(query);
8376}
8377
8378
8379

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected