summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbmime.cpp
Commit message (Collapse)AuthorAgeFilesLines
* cosmetic changesLars Knoll2011-06-081-1/+1
|
* cleanups codeLars Knoll2011-06-071-17/+17
| | | | | | | Make QXcbClipboard and QXcbDrag a QXcbObject to simplify the code. Use the predefined atoms in xproto.h instead of our own defines.
* Cleanup code for copy/paste of textLars Knoll2011-05-301-40/+12
| | | | | | | | | | 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-3/+8
|
* Correctly define standard XA_FOO atomsLars Knoll2011-05-301-16/+16
|
* Add xcb based mime type handlingLars Knoll2011-05-301-0/+311
Reworked the code from the xlib lighthouse plugin to remove most of the Xlib dependencies. The code originally comdes from qdnd_x11.cpp