summaryrefslogtreecommitdiffstats
path: root/src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-07-17 13:10:41 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-22 17:46:09 +0000
commitb61ab2b425627be68ee04e11016fafd07f0617c3 (patch)
treee5adb84533d056bf255dd9365bac4d830357861f /src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc
parentac98b6e4ea46835d01b4c8f35b566a92136c90fe (diff)
Add QPlatformInterface::Private::QWindowsWindow
Remove QWindowsWindowFunctions Task-number: QTBUG-83252 Change-Id: Iacfdf2e0f430208901c182e461c4617e1ef526ce Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc')
-rw-r--r--src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc101
1 files changed, 0 insertions, 101 deletions
diff --git a/src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc b/src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc
deleted file mode 100644
index f211165936..0000000000
--- a/src/platformheaders/windowsfunctions/qwindowswindowfunctions.qdoc
+++ /dev/null
@@ -1,101 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:FDL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Free Documentation License Usage
-** Alternatively, this file may be used under the terms of the GNU Free
-** Documentation License version 1.3 as published by the Free Software
-** Foundation and appearing in the file included in the packaging of
-** this file. Please review the following information to ensure
-** the GNU Free Documentation License version 1.3 requirements
-** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-/*!
- \class QWindowsWindowFunctions
- \inmodule QtPlatformHeaders
- \inheaderfile QtPlatformHeaders/QWindowsWindowFunctions
- \since 5.5
- \brief The QWindowsWindowFunctions class is an inline class containing
- miscellaneous functionality for Windows window specific functionality.
-
- A common usage pattern is as follows:
- \snippet qwindowswindowfunctions/main.cpp 0
-
- \note There is no binary compatibility guarantee for this class,
- meaning that an application using it is only guaranteed to work with the Qt
- version it was developed against.
-*/
-
-/*!
- \typedef QWindowsWindowFunctions::SetHasBorderInFullScreen
-
- This is the typedef for the function returned by QGuiApplication::platformFunction when passed setHasBorderInFullScreenIdentifier.
-*/
-
-/*!
- \fn QByteArray QWindowsWindowFunctions::setHasBorderInFullScreenIdentifier()
- \since 5.6
-
- This function returns the bytearray that can be used to query
- QGuiApplication::platformFunction to retrieve the SetHasBorderInFullScreen function.
-*/
-
-/*!
- \fn void QWindowsWindowFunctions::setHasBorderInFullScreen(QWindow *window, bool border)
- \since 5.6
-
- This is a convenience function that can be used directly instead of resolving the function pointer.
- \a window and \a border will be relayed to the function retrieved by QGuiApplication. When \a border
- is true then it will enable the WS_BORDER flag in full screen mode to enable other top level windows
- inside the application to appear on top when required.
-
- \note The setting must be applied before showing the window or switching it
- to full screen. For QML, setHasBorderInFullScreenDefault() can be used to
- set a default value.
-
- See also \l [QtDoc] {Fullscreen OpenGL Based Windows}
-*/
-
-/*!
- \typedef QWindowsWindowFunctions::SetHasBorderInFullScreenDefault
- \since 5.13
-
- This is the typedef for the function returned by QGuiApplication::platformFunction
- when passed setHasBorderInFullScreenDefaultIdentifier.
-*/
-
-/*!
- \fn QByteArray QWindowsWindowFunctions::setHasBorderInFullScreenDefaultIdentifier()
- \since 5.13
-
- This function returns the bytearray that can be used to query
- QGuiApplication::platformFunction to retrieve the SetHasBorderInFullScreen function.
-*/
-
-/*!
- \fn void QWindowsWindowFunctions::setHasBorderInFullScreenDefault(bool border)
- \since 5.13
-
- This is a convenience function that can be used directly instead of resolving
- the function pointer. \a border will be relayed to the function retrieved by
- QGuiApplication. When \a border is true, the WS_BORDER flag will be set
- in full screen mode for all windows by default.
-
- See also \l [QtDoc] {Fullscreen OpenGL Based Windows}
- \sa setHasBorderInFullScreen()
-*/