VirtualBox

Changeset 62471 in vbox for trunk/src/VBox/GuestHost


Ignore:
Timestamp:
Jul 22, 2016 6:04:30 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
109027
Message:

Misc: scm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp

    r61725 r62471  
    6565    UTF8,
    6666    BMP,
    67         HTML
     67        HTML
    6868};
    6969
     
    9696    { "image/x-bmp", BMP, VBOX_SHARED_CLIPBOARD_FMT_BITMAP },
    9797    { "image/x-MS-bmp", BMP, VBOX_SHARED_CLIPBOARD_FMT_BITMAP }
    98    
    99        
     98
     99
    100100    /* TODO: Inkscape exports image/png but not bmp... */
    101101};
     
    339339    u32VBoxFormats |= clipVBoxFormatForX11Format(pCtx->X11HTMLFormat);
    340340    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,
    343343                    u32VBoxFormats ));
    344344    ClipReportX11Formats(pCtx->pFrontend, u32VBoxFormats);
     
    450450/**
    451451 * 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
    453453 * @param  pCtx      the clipboard backend context structure
    454454 * @param  pTargets  the list of targets
     
    12061206    if(pszDest == NULL)
    12071207        return VERR_NO_MEMORY;
    1208        
     1208
    12091209    memcpy(pszDest, pszSrc, cbSrc);
    12101210
     
    12131213    *pcLenReturn = cbSrc;
    12141214    *piFormatReturn = 8;
    1215    
     1215
    12161216    return VINF_SUCCESS;
    12171217}
     
    13001300        RTMemFree(pv);
    13011301    }
    1302     else if ( (format == HTML) 
     1302    else if ( (format == HTML)
    13031303            && (pCtx->vboxFormats & VBOX_SHARED_CLIPBOARD_FMT_HTML))
    13041304    {
     
    13121312        if (RT_SUCCESS(rc))
    13131313        {
    1314             /* 
    1315             * The common VBox HTML encoding will be - Utf8 
     1314            /*
     1315            * The common VBox HTML encoding will be - Utf8
    13161316            * 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
    13181318            * convert it to UTF8
    13191319            * It's very strange but here we get utf16 from x11 clipboard
     
    17771777            case HTML:
    17781778            {
    1779                 /* The common VBox HTML encoding will be - Utf8 
     1779                /* The common VBox HTML encoding will be - Utf8
    17801780                * 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
    17831783                */
    17841784                pvDest = NULL;
    17851785                cbDest = 0;
    1786                 /* Some applications sends data in utf16, some in itf8, 
     1786                /* Some applications sends data in utf16, some in itf8,
    17871787                 * 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
    17891789                 * at start of clipboard data
    17901790                 */
     
    18091809                   }
    18101810                }
    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",
    18131813                                pvSrc, cbSrc, ((PRTUTF16)pvSrc)[0]));
    18141814                LogRelFlowFunc(("converted to win unicode %s, cbDest = %d, rc = %Rrc\n", pvDest, cbDest, rc));
     
    19241924            getSelectionValue(pCtx, pCtx->X11HTMLFormat, pReq);
    19251925    }
    1926     else   
     1926    else
    19271927        rc = VERR_NOT_IMPLEMENTED;
    19281928    if (RT_FAILURE(rc))
     
    28172817#endif /* SMOKETEST defined */
    28182818
    2819                    
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette