summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qplatformwindow.h1
-rw-r--r--src/gui/kernel/qplatformwindow_qpa.cpp11
2 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/kernel/qplatformwindow.h b/src/gui/kernel/qplatformwindow.h
index d9f79f25eb..cded1fe316 100644
--- a/src/gui/kernel/qplatformwindow.h
+++ b/src/gui/kernel/qplatformwindow.h
@@ -102,6 +102,7 @@ public:
virtual void lower();
virtual bool isExposed() const;
+ virtual bool isActive() const;
virtual void propagateSizeHints();
diff --git a/src/gui/kernel/qplatformwindow_qpa.cpp b/src/gui/kernel/qplatformwindow_qpa.cpp
index 88f2a6481e..d2ec6833b0 100644
--- a/src/gui/kernel/qplatformwindow_qpa.cpp
+++ b/src/gui/kernel/qplatformwindow_qpa.cpp
@@ -169,6 +169,17 @@ bool QPlatformWindow::isExposed() const
}
/*!
+ Returns true if the window should appear active from a style perspective.
+
+ This function can make platform-specific isActive checks, such as checking
+ if the QWindow is embedded in an active native window.
+*/
+bool QPlatformWindow::isActive() const
+{
+ return false;
+}
+
+/*!
Requests setting the window state of this surface
to \a type. Returns the actual state set.