nss: upgrade to release 3.73
[LibreOffice.git] / test / source / helper / transferable.cxx
blobe8990d925d18cb36b40cff102ca3bf1f0a9f95eb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <test/helper/transferable.hxx>
11 #include <com/sun/star/datatransfer/UnsupportedFlavorException.hpp>
13 using namespace css;
15 namespace apitest::helper::transferable
17 OString OOO_DLLPUBLIC_TEST getTextSelection(
18 const css::uno::Reference<css::datatransfer::XTransferable>& xTransferable, OString mimeType)
20 if (!xTransferable.is())
21 return OString();
23 // Take care of UTF-8 text here.
24 bool bConvert = false;
25 sal_Int32 nIndex = 0;
26 if (mimeType.getToken(0, ';', nIndex) == "text/plain")
28 if (mimeType.getToken(0, ';', nIndex) == "charset=utf-8")
30 mimeType = "text/plain;charset=utf-16";
31 bConvert = true;
35 datatransfer::DataFlavor aFlavor;
36 aFlavor.MimeType = OUString::fromUtf8(mimeType.getStr());
37 if (mimeType == "text/plain;charset=utf-16")
38 aFlavor.DataType = cppu::UnoType<OUString>::get();
39 else
40 aFlavor.DataType = cppu::UnoType<uno::Sequence<sal_Int8>>::get();
42 if (!xTransferable.is() || !xTransferable->isDataFlavorSupported(aFlavor))
43 return OString();
45 uno::Any aAny;
46 try
48 aAny = xTransferable->getTransferData(aFlavor);
50 catch (const css::datatransfer::UnsupportedFlavorException&)
52 return OString();
54 catch (const css::uno::Exception&)
56 return OString();
59 OString aRet;
60 if (aFlavor.DataType == cppu::UnoType<OUString>::get())
62 OUString aString;
63 aAny >>= aString;
64 if (bConvert)
65 aRet = OUStringToOString(aString, RTL_TEXTENCODING_UTF8);
66 else
67 aRet = OString(reinterpret_cast<const char*>(aString.getStr()),
68 aString.getLength() * sizeof(sal_Unicode));
70 else
72 uno::Sequence<sal_Int8> aSequence;
73 aAny >>= aSequence;
74 aRet = OString(reinterpret_cast<char*>(aSequence.getArray()), aSequence.getLength());
76 return aRet;
79 } // namespace apitest::helper::transferable
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */