summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/platforms/xcb/qxcbconnection.cpp20
-rw-r--r--src/plugins/platforms/xcb/qxcbconnection.h6
-rw-r--r--src/plugins/platforms/xcb/qxcbintegration.cpp3
-rw-r--r--src/plugins/platforms/xcb/qxcbnativeinterface.cpp25
-rw-r--r--src/plugins/platforms/xcb/qxcbnativeinterface.h1
5 files changed, 55 insertions, 0 deletions
diff --git a/src/plugins/platforms/xcb/qxcbconnection.cpp b/src/plugins/platforms/xcb/qxcbconnection.cpp
index 5510c3b1b4..3d6adfa45c 100644
--- a/src/plugins/platforms/xcb/qxcbconnection.cpp
+++ b/src/plugins/platforms/xcb/qxcbconnection.cpp
@@ -1331,6 +1331,20 @@ void QXcbConnection::handleClientMessageEvent(const xcb_client_message_event_t *
if (!window)
return;
+#ifdef Q_OS_LINUX_TIZEN
+ if (event->type == atom(QXcbAtom::_X_ILLUME_DEACTIVATE_WINDOW)) {
+ QWindowSystemInterface::handleApplicationStateChanged(Qt::ApplicationSuspended);
+ return;
+ } if (event->type == atom(QXcbAtom::_X_ILLUME_ACTIVATE_WINDOW)) {
+ QWindowSystemInterface::handleApplicationStateChanged(Qt::ApplicationActive);
+ return;
+ } else if (event->type == atom(QXcbAtom::_E_COMP_FLUSH)
+ || event->type == atom(QXcbAtom::_NET_CM_WINDOW_EFFECT_CLIENT_STATE)) {
+ //silence the Tizen Mobile X11 WM messages for now
+ return;
+ }
+#endif // Q_OS_LINUX_TIZEN
+
window->handleClientMessageEvent(event);
}
@@ -1536,6 +1550,12 @@ static const char * xcb_atomnames = {
"Rel Vert Wheel\0"
"Rel Horiz Scroll\0"
"Rel Vert Scroll\0"
+#ifdef Q_OS_LINUX_TIZEN
+ "_E_COMP_FLUSH\0"
+ "_NET_CM_WINDOW_EFFECT_CLIENT_STATE\0"
+ "_X_ILLUME_ACTIVATE_WINDOW\0"
+ "_X_ILLUME_DEACTIVATE_WINDOW\0"
+#endif
"_XSETTINGS_SETTINGS\0"
"_COMPIZ_DECOR_PENDING\0"
"_COMPIZ_DECOR_REQUEST\0"
diff --git a/src/plugins/platforms/xcb/qxcbconnection.h b/src/plugins/platforms/xcb/qxcbconnection.h
index 7286b6b89b..7fbe21e65b 100644
--- a/src/plugins/platforms/xcb/qxcbconnection.h
+++ b/src/plugins/platforms/xcb/qxcbconnection.h
@@ -273,6 +273,12 @@ namespace QXcbAtom {
RelHorizScroll,
RelVertScroll,
+#ifdef Q_OS_LINUX_TIZEN
+ _E_COMP_FLUSH,
+ _NET_CM_WINDOW_EFFECT_CLIENT_STATE,
+ _X_ILLUME_ACTIVATE_WINDOW,
+ _X_ILLUME_DEACTIVATE_WINDOW,
+#endif
_XSETTINGS_SETTINGS,
_COMPIZ_DECOR_PENDING,
diff --git a/src/plugins/platforms/xcb/qxcbintegration.cpp b/src/plugins/platforms/xcb/qxcbintegration.cpp
index f0c4a7f691..ec006f73b7 100644
--- a/src/plugins/platforms/xcb/qxcbintegration.cpp
+++ b/src/plugins/platforms/xcb/qxcbintegration.cpp
@@ -321,6 +321,9 @@ bool QXcbIntegration::hasCapability(QPlatformIntegration::Capability cap) const
case ForeignWindows: return true;
case SyncState: return true;
case RasterGLSurface: return true;
+#ifdef Q_OS_LINUX_TIZEN
+ case ApplicationState: return true;
+#endif
default: return QPlatformIntegration::hasCapability(cap);
}
}
diff --git a/src/plugins/platforms/xcb/qxcbnativeinterface.cpp b/src/plugins/platforms/xcb/qxcbnativeinterface.cpp
index 31dedd40a2..0b08895a3f 100644
--- a/src/plugins/platforms/xcb/qxcbnativeinterface.cpp
+++ b/src/plugins/platforms/xcb/qxcbnativeinterface.cpp
@@ -53,6 +53,7 @@
#endif
#include <QtPlatformHeaders/qxcbwindowfunctions.h>
+#include <QtPlatformHeaders/qxcbfunctions.h>
#ifdef XCB_USE_XLIB
# include <X11/Xlib.h>
@@ -334,11 +335,35 @@ QPlatformNativeInterface::NativeResourceForScreenFunction QXcbNativeInterface::n
return 0;
}
+static void _setDeviceOrientation(Qt::ScreenOrientation orientation) {
+ //QMetaObject::invokeMethod method is used here because it is possible
+ //and very probable that this function will be invoked from non-Gui thread.
+ //This way thread safety is guqranteed in easy way
+ QMetaObject::invokeMethod(QGuiApplication::platformNativeInterface(),
+ "setDeviceOrientation",
+ Q_ARG(int, orientation));
+}
+
+void QXcbNativeInterface::setDeviceOrientation(int orientation) {
+ //This slot is private and supposed to be invoked only by _setDeviceOrientation function
+ Qt::ScreenOrientation screenOrientation = (Qt::ScreenOrientation) orientation;
+ QScreen *screen = QGuiApplication::primaryScreen();
+ if (screen)
+ QWindowSystemInterface::handleScreenOrientationChange(screen, screenOrientation);
+ else
+ qWarning() << "Can't set device orientation to:" << qPrintable(screenOrientation)
+ << "because there is no primary screen";
+}
+
QFunctionPointer QXcbNativeInterface::platformFunction(const QByteArray &function) const
{
if (function == QXcbWindowFunctions::setWmWindowTypeIdentifier()) {
return QFunctionPointer(QXcbWindow::setWmWindowTypeStatic);
}
+ if (function == QXcbFunctions::setDeviceOrientationTypeIdentifier()) {
+ //Pointer to static function is returned because - see comment in that function
+ return QFunctionPointer(_setDeviceOrientation);
+ }
return Q_NULLPTR;
}
diff --git a/src/plugins/platforms/xcb/qxcbnativeinterface.h b/src/plugins/platforms/xcb/qxcbnativeinterface.h
index 330dd008c4..03a029dc80 100644
--- a/src/plugins/platforms/xcb/qxcbnativeinterface.h
+++ b/src/plugins/platforms/xcb/qxcbnativeinterface.h
@@ -116,6 +116,7 @@ signals:
private:
xcb_window_t locateSystemTray(xcb_connection_t *conn, const QXcbScreen *screen);
+ Q_INVOKABLE void setDeviceOrientation(int orientation);
const QByteArray m_genericEventFilterType;