summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbconnection.cpp
diff options
context:
space:
mode:
authorGatis Paeglis <gatis.paeglis@digia.com>2013-09-09 14:20:50 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-19 12:56:56 +0200
commitbc6f5b3ff61f4b1dea14084349702f2895feda66 (patch)
tree38b7549734c5fe3f7030a0e81bc0e3c9a3143ad9 /src/plugins/platforms/xcb/qxcbconnection.cpp
parentfdd843d5a76f2bba5c4ebdd5813c97f5105c5765 (diff)
Implement INCR property mechanism for large data transfers [XCB]
Implement INCR property mechanism according to the icccm specification. Change-Id: Ic8f85b71cab825d70ee1b61f29acd09fa4c3e642 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/plugins/platforms/xcb/qxcbconnection.cpp')
-rw-r--r--src/plugins/platforms/xcb/qxcbconnection.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/platforms/xcb/qxcbconnection.cpp b/src/plugins/platforms/xcb/qxcbconnection.cpp
index 2ce34ea8f2..bb9922c5a1 100644
--- a/src/plugins/platforms/xcb/qxcbconnection.cpp
+++ b/src/plugins/platforms/xcb/qxcbconnection.cpp
@@ -1154,6 +1154,12 @@ void QXcbConnection::processXcbEvents()
continue;
}
+ bool accepted = false;
+ if (clipboard()->processIncr())
+ clipboard()->incrTransactionPeeker(event, accepted);
+ if (accepted)
+ continue;
+
QVector<PeekFunc>::iterator it = m_peekFuncs.begin();
while (it != m_peekFuncs.end()) {
// These callbacks return true if the event is what they were