summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/windows/qwindowswindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/windows/qwindowswindow.cpp')
-rw-r--r--src/plugins/platforms/windows/qwindowswindow.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/plugins/platforms/windows/qwindowswindow.cpp b/src/plugins/platforms/windows/qwindowswindow.cpp
index 6ff854805c..38a44e2b5a 100644
--- a/src/plugins/platforms/windows/qwindowswindow.cpp
+++ b/src/plugins/platforms/windows/qwindowswindow.cpp
@@ -704,8 +704,11 @@ void QWindowsWindow::setVisible(bool visible)
if (m_data.hwnd) {
if (visible) {
show_sys();
+ QWindowSystemInterface::handleSynchronousExposeEvent(window(),
+ QRect(QPoint(), geometry().size()));
} else {
hide_sys();
+ QWindowSystemInterface::handleSynchronousExposeEvent(window(), QRegion());
}
}
}
@@ -1191,6 +1194,22 @@ void QWindowsWindow::lower()
SetWindowPos(m_data.hwnd, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
}
+void QWindowsWindow::windowEvent(QEvent *event)
+{
+ switch (event->type()) {
+ case QEvent::WindowBlocked: // Blocked by another modal window.
+ setEnabled(false);
+ setFlag(BlockedByModal);
+ break;
+ case QEvent::WindowUnblocked:
+ setEnabled(true);
+ clearFlag(BlockedByModal);
+ break;
+ default:
+ break;
+ }
+}
+
void QWindowsWindow::propagateSizeHints()
{
if (QWindowsContext::verboseWindows)
@@ -1351,6 +1370,50 @@ QWindowsWindow *QWindowsWindow::childAt(const QPoint &clientPoint, unsigned cwex
return 0;
}
+void QWindowsWindow::alertWindow(int durationMs)
+{
+ DWORD timeOutMs = GetCaretBlinkTime();
+ if (!timeOutMs || timeOutMs == INFINITE)
+ timeOutMs = 250;
+
+ FLASHWINFO info;
+ info.cbSize = sizeof(info);
+ info.hwnd = m_data.hwnd;
+ info.dwFlags = FLASHW_TRAY;
+ info.dwTimeout = timeOutMs;
+ info.uCount = durationMs == 0 ? 10 : durationMs / timeOutMs;
+ FlashWindowEx(&info);
+}
+
+void QWindowsWindow::stopAlertWindow()
+{
+ FLASHWINFO info;
+ info.cbSize = sizeof(info);
+ info.hwnd = m_data.hwnd;
+ info.dwFlags = FLASHW_STOP;
+ info.dwTimeout = 0;
+ info.uCount = 0;
+ FlashWindowEx(&info);
+}
+
+bool QWindowsWindow::isEnabled() const
+{
+ return (style() & WS_DISABLED) == 0;
+}
+
+void QWindowsWindow::setEnabled(bool enabled)
+{
+ const unsigned oldStyle = style();
+ unsigned newStyle = oldStyle;
+ if (enabled) {
+ newStyle &= ~WS_DISABLED;
+ } else {
+ newStyle |= WS_DISABLED;
+ }
+ if (newStyle != oldStyle)
+ setStyle(newStyle);
+}
+
QByteArray QWindowsWindow::debugWindowFlags(Qt::WindowFlags wf)
{
const int iwf = int(wf);