qxcbwindowfunctions.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the plugins of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QXCBWINDOWFUNCTIONS_H
  40. #define QXCBWINDOWFUNCTIONS_H
  41. #include <QtPlatformHeaders/QPlatformHeaderHelper>
  42. QT_BEGIN_NAMESPACE
  43. class QWindow;
  44. class QXcbWindowFunctions {
  45. public:
  46. enum WmWindowType {
  47. Normal = 0x000001,
  48. Desktop = 0x000002,
  49. Dock = 0x000004,
  50. Toolbar = 0x000008,
  51. Menu = 0x000010,
  52. Utility = 0x000020,
  53. Splash = 0x000040,
  54. Dialog = 0x000080,
  55. DropDownMenu = 0x000100,
  56. PopupMenu = 0x000200,
  57. Tooltip = 0x000400,
  58. Notification = 0x000800,
  59. Combo = 0x001000,
  60. Dnd = 0x002000,
  61. KdeOverride = 0x004000
  62. };
  63. Q_DECLARE_FLAGS(WmWindowTypes, WmWindowType)
  64. typedef void (*SetWmWindowType)(QWindow *window, QXcbWindowFunctions::WmWindowTypes windowType);
  65. static const QByteArray setWmWindowTypeIdentifier() { return QByteArrayLiteral("XcbSetWmWindowType"); }
  66. static void setWmWindowType(QWindow *window, WmWindowType type)
  67. {
  68. return QPlatformHeaderHelper::callPlatformFunction<void, SetWmWindowType, QWindow *, WmWindowType>(setWmWindowTypeIdentifier(), window, type);
  69. }
  70. typedef void (*SetWmWindowRole)(QWindow *window, const QByteArray &role);
  71. static const QByteArray setWmWindowRoleIdentifier() { return QByteArrayLiteral("XcbSetWmWindowRole"); }
  72. static void setWmWindowRole(QWindow *window, const QByteArray &role)
  73. {
  74. return QPlatformHeaderHelper::callPlatformFunction<void, SetWmWindowRole, QWindow *, const QByteArray &>(setWmWindowRoleIdentifier(), window, role);
  75. }
  76. typedef void (*SetWmWindowIconText)(QWindow *window, const QString &text);
  77. static const QByteArray setWmWindowIconTextIdentifier() { return QByteArrayLiteral("XcbSetWmWindowIconText"); }
  78. static void setWmWindowIconText(QWindow *window, const QString &text)
  79. {
  80. return QPlatformHeaderHelper::callPlatformFunction<void, SetWmWindowIconText, QWindow *, const QString &>(setWmWindowIconTextIdentifier(), window, text);
  81. }
  82. typedef void (*SetParentRelativeBackPixmap)(const QWindow *window);
  83. static const QByteArray setParentRelativeBackPixmapIdentifier() { return QByteArrayLiteral("XcbSetParentRelativeBackPixmap"); }
  84. static void setParentRelativeBackPixmap(const QWindow *window)
  85. {
  86. return QPlatformHeaderHelper::callPlatformFunction<void, SetParentRelativeBackPixmap, const QWindow *>(setParentRelativeBackPixmapIdentifier(), window);
  87. }
  88. typedef bool (*RequestSystemTrayWindowDock)(const QWindow *window);
  89. static const QByteArray requestSystemTrayWindowDockIdentifier() { return QByteArrayLiteral("XcbRequestSystemTrayWindowDockIdentifier"); }
  90. static bool requestSystemTrayWindowDock(const QWindow *window)
  91. {
  92. return QPlatformHeaderHelper::callPlatformFunction<bool, RequestSystemTrayWindowDock, const QWindow *>(requestSystemTrayWindowDockIdentifier(), window);
  93. }
  94. typedef QRect (*SystemTrayWindowGlobalGeometry)(const QWindow *window);
  95. static const QByteArray systemTrayWindowGlobalGeometryIdentifier() { return QByteArrayLiteral("XcbSystemTrayWindowGlobalGeometryIdentifier"); }
  96. static QRect systemTrayWindowGlobalGeometry(const QWindow *window)
  97. {
  98. return QPlatformHeaderHelper::callPlatformFunction<QRect, SystemTrayWindowGlobalGeometry, const QWindow *>(systemTrayWindowGlobalGeometryIdentifier(), window);
  99. }
  100. typedef uint (*VisualId)(QWindow *window);
  101. static const QByteArray visualIdIdentifier() { return QByteArrayLiteral("XcbVisualId"); }
  102. static uint visualId(QWindow *window)
  103. {
  104. QXcbWindowFunctions::VisualId func = reinterpret_cast<VisualId>(QGuiApplication::platformFunction(visualIdIdentifier()));
  105. if (func)
  106. return func(window);
  107. return UINT_MAX;
  108. }
  109. };
  110. QT_END_NAMESPACE
  111. #endif // QXCBWINDOWFUNCTIONS_H