summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qplatformwindow_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel/qplatformwindow_p.h')
-rw-r--r--src/gui/kernel/qplatformwindow_p.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/gui/kernel/qplatformwindow_p.h b/src/gui/kernel/qplatformwindow_p.h
index e7682cc204..fdcb62b364 100644
--- a/src/gui/kernel/qplatformwindow_p.h
+++ b/src/gui/kernel/qplatformwindow_p.h
@@ -107,7 +107,17 @@ struct Q_GUI_EXPORT QXcbWindow
virtual void setWindowIconText(const QString &text) = 0;
virtual uint visualId() const = 0;
};
-#endif
+#endif // xcb
+
+#ifdef Q_OS_WIN
+struct Q_GUI_EXPORT QWindowsWindow
+{
+ QT_DECLARE_PLATFORM_INTERFACE(QWindowsWindow)
+
+ virtual void setHasBorderInFullScreen(bool border) = 0;
+ virtual bool hasBorderInFullScreen() const = 0;
+};
+#endif // Q_OS_WIN
} // QPlatformInterface::Private