summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbclipboard.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix some remaining issues with DnDLars Knoll2011-06-071-18/+7
| | | | | | | | | Do not set the event mask of the window we drop onto to NO_EVENT. Always use the clipboards requestor window to convert selections. Reviewed-by: Samuel
* Implement XDnD in the xcb pluginLars Knoll2011-06-071-4/+4
| | | | | | | | | Ported most of the code to support dragging from qdnd_x11.cpp to xcb. Some features are still not working 100% correct, but it's becoming usable. Reviewed-by: Samuel
* X11 DnD implementationLars Knoll2011-06-071-14/+19
| | | | | | | | | | | Initial code for DnD on X11. Only Xdnd based, Motif DnD is being ignored. The code is currently limited to dropping stuff onto the application. Starting drags is not yet implemented. Reviewed-by: Samuel
* Cleanup code for copy/paste of textLars Knoll2011-05-301-21/+0
| | | | | | | | | | Remove support for COMPOUND_TEXT. All apps should these days support UTF8_STRING. If not they'll have to live with STRING or TEXT. ICCCM states that TEXT is in the encoding of choice. Make this latin1 instead of local8bit. XA_STRING is defined to be latin1, so don't use local8bit here neither.
* correctly decode pasted textLars Knoll2011-05-301-6/+7
|
* partially working pasteLars Knoll2011-05-301-6/+18
| | | | | | We now paste something from the clipboard, but the format conversion seems to be still off at times.
* add an xcb based clipboard implementationLars Knoll2011-05-301-0/+782
Copying from the app to somewhere else works fine, but pasting into the app is still broken.