Changeset 62471 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Jul 22, 2016 6:04:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109027
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp
r61725 r62471 65 65 UTF8, 66 66 BMP, 67 67 HTML 68 68 }; 69 69 … … 96 96 { "image/x-bmp", BMP, VBOX_SHARED_CLIPBOARD_FMT_BITMAP }, 97 97 { "image/x-MS-bmp", BMP, VBOX_SHARED_CLIPBOARD_FMT_BITMAP } 98 99 98 99 100 100 /* TODO: Inkscape exports image/png but not bmp... */ 101 101 }; … … 339 339 u32VBoxFormats |= clipVBoxFormatForX11Format(pCtx->X11HTMLFormat); 340 340 LogRelFlowFunc(("clipReportFormatsToVBox format: %d\n", u32VBoxFormats)); 341 LogRelFlowFunc(("clipReportFormatsToVBox txt: %d, bitm: %d, html:%d, u32VBoxFormats: %d\n", 342 pCtx->X11TextFormat, pCtx->X11BitmapFormat, pCtx->X11HTMLFormat, 341 LogRelFlowFunc(("clipReportFormatsToVBox txt: %d, bitm: %d, html:%d, u32VBoxFormats: %d\n", 342 pCtx->X11TextFormat, pCtx->X11BitmapFormat, pCtx->X11HTMLFormat, 343 343 u32VBoxFormats )); 344 344 ClipReportX11Formats(pCtx->pFrontend, u32VBoxFormats); … … 450 450 /** 451 451 * Go through an array of X11 clipboard targets to see if they contain a HTML 452 * format we can support, and if so choose the ones we prefer 452 * format we can support, and if so choose the ones we prefer 453 453 * @param pCtx the clipboard backend context structure 454 454 * @param pTargets the list of targets … … 1206 1206 if(pszDest == NULL) 1207 1207 return VERR_NO_MEMORY; 1208 1208 1209 1209 memcpy(pszDest, pszSrc, cbSrc); 1210 1210 … … 1213 1213 *pcLenReturn = cbSrc; 1214 1214 *piFormatReturn = 8; 1215 1215 1216 1216 return VINF_SUCCESS; 1217 1217 } … … 1300 1300 RTMemFree(pv); 1301 1301 } 1302 else if ( (format == HTML) 1302 else if ( (format == HTML) 1303 1303 && (pCtx->vboxFormats & VBOX_SHARED_CLIPBOARD_FMT_HTML)) 1304 1304 { … … 1312 1312 if (RT_SUCCESS(rc)) 1313 1313 { 1314 /* 1315 * The common VBox HTML encoding will be - Utf8 1314 /* 1315 * The common VBox HTML encoding will be - Utf8 1316 1316 * becuase it more general for HTML formats then UTF16 1317 * X11 clipboard returns UTF16, so before sending it we should 1317 * X11 clipboard returns UTF16, so before sending it we should 1318 1318 * convert it to UTF8 1319 1319 * It's very strange but here we get utf16 from x11 clipboard … … 1777 1777 case HTML: 1778 1778 { 1779 /* The common VBox HTML encoding will be - Utf8 1779 /* The common VBox HTML encoding will be - Utf8 1780 1780 * becuase it more general for HTML formats then UTF16 1781 * X11 clipboard returns UTF16, so before sending it we should 1782 * convert it to UTF8 1781 * X11 clipboard returns UTF16, so before sending it we should 1782 * convert it to UTF8 1783 1783 */ 1784 1784 pvDest = NULL; 1785 1785 cbDest = 0; 1786 /* Some applications sends data in utf16, some in itf8, 1786 /* Some applications sends data in utf16, some in itf8, 1787 1787 * without indication it in MIME. 1788 * But in case of utf16, at least an OpenOffice adds Byte Order Mark - 0xfeff 1788 * But in case of utf16, at least an OpenOffice adds Byte Order Mark - 0xfeff 1789 1789 * at start of clipboard data 1790 1790 */ … … 1809 1809 } 1810 1810 } 1811 1812 LogRelFlowFunc(("Source unicode %ls, cbSrc = %d\n, Byte Order Mark = %hx", 1811 1812 LogRelFlowFunc(("Source unicode %ls, cbSrc = %d\n, Byte Order Mark = %hx", 1813 1813 pvSrc, cbSrc, ((PRTUTF16)pvSrc)[0])); 1814 1814 LogRelFlowFunc(("converted to win unicode %s, cbDest = %d, rc = %Rrc\n", pvDest, cbDest, rc)); … … 1924 1924 getSelectionValue(pCtx, pCtx->X11HTMLFormat, pReq); 1925 1925 } 1926 else 1926 else 1927 1927 rc = VERR_NOT_IMPLEMENTED; 1928 1928 if (RT_FAILURE(rc)) … … 2817 2817 #endif /* SMOKETEST defined */ 2818 2818 2819
Note:
See TracChangeset
for help on using the changeset viewer.