summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qwindow.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2011-10-21 10:59:27 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-22 19:18:20 +0200
commit68dc5b90c04058ff8d940c093528effa80ac7e4a (patch)
tree5b811142be4fa460885c141baa31f2515c7e4857 /src/gui/kernel/qwindow.cpp
parente19292120b33f55a10f233bdaab7030f4299db66 (diff)
Add virtual QWindow::focusObject() method
The method allows to retrieve the object that currently has the input focus inside the Window. This is e.g. required to correctly determine the context for keyboard shortcuts. Change-Id: I9e05ef62717973bac275ce34cc70fb86aa2d1e5b Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Diffstat (limited to 'src/gui/kernel/qwindow.cpp')
-rw-r--r--src/gui/kernel/qwindow.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/kernel/qwindow.cpp b/src/gui/kernel/qwindow.cpp
index 04098b44c8..80666b87d2 100644
--- a/src/gui/kernel/qwindow.cpp
+++ b/src/gui/kernel/qwindow.cpp
@@ -663,6 +663,15 @@ QAccessibleInterface *QWindow::accessibleRoot() const
return 0;
}
+/*!
+ Returns the QObject that will be the final receiver of events tied focus, such
+ as key events.
+*/
+QObject *QWindow::focusObject() const
+{
+ return const_cast<QWindow *>(this);
+}
+
void QWindow::showMinimized()
{