LibreOffice Module basctl (master) 1
dlgedclip.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <dlgedclip.hxx>
21#include <vcl/svapp.hxx>
23#include <com/sun/star/datatransfer/UnsupportedFlavorException.hpp>
24#include <com/sun/star/datatransfer/XMimeContentType.hpp>
25#include <com/sun/star/datatransfer/MimeContentTypeFactory.hpp>
26
27namespace basctl
28{
29
30using namespace comphelper;
31using namespace ::com::sun::star;
32using namespace ::com::sun::star::uno;
33using namespace ::com::sun::star::datatransfer;
36{
37 m_SeqFlavors = aSeqFlavors;
38 m_SeqData = aSeqData;
39}
41{
42}
43bool DlgEdTransferableImpl::compareDataFlavors( const DataFlavor& lFlavor, const DataFlavor& rFlavor )
44{
45 // compare mime content types
48 xMCntTypeFactory = MimeContentTypeFactory::create(xContext);
49
50 // compare full media types
51 Reference< datatransfer::XMimeContentType > xLType = xMCntTypeFactory->createMimeContentType( lFlavor.MimeType );
52 Reference< datatransfer::XMimeContentType > xRType = xMCntTypeFactory->createMimeContentType( rFlavor.MimeType );
53
54 OUString aLFullMediaType = xLType->getFullMediaType();
55 OUString aRFullMediaType = xRType->getFullMediaType();
56
57 bool bRet = aLFullMediaType.equalsIgnoreAsciiCase( aRFullMediaType );
58
59 return bRet;
60}
61
62// XTransferable
63Any SAL_CALL DlgEdTransferableImpl::getTransferData( const DataFlavor& rFlavor )
64{
65 const SolarMutexGuard aGuard;
66
67 if ( !isDataFlavorSupported( rFlavor ) )
68 throw UnsupportedFlavorException();
69
70 Any aData;
71
72 for ( sal_Int32 i = 0; i < m_SeqFlavors.getLength(); i++ )
73 {
74 if ( compareDataFlavors( m_SeqFlavors[i] , rFlavor ) )
75 {
76 aData = m_SeqData[i];
77 break;
78 }
79 }
80
81 return aData;
82}
84{
85 const SolarMutexGuard aGuard;
86
87 return m_SeqFlavors;
88}
89sal_Bool SAL_CALL DlgEdTransferableImpl::isDataFlavorSupported( const DataFlavor& rFlavor )
90{
91 const SolarMutexGuard aGuard;
92
93 for ( auto const & i : std::as_const(m_SeqFlavors) )
94 if ( compareDataFlavors( i, rFlavor ) )
95 return true;
96 return false;
97}
98
99// XClipboardOwner
101{
102 const SolarMutexGuard aGuard;
103
106}
107} // namespace basctl
108
109/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual sal_Bool SAL_CALL isDataFlavorSupported(const css::datatransfer::DataFlavor &rFlavor) override
Definition: dlgedclip.cxx:89
DlgEdTransferableImpl(const css::uno::Sequence< css::datatransfer::DataFlavor > &aSeqFlavors, const css::uno::Sequence< css::uno::Any > &aSeqData)
Definition: dlgedclip.cxx:35
static bool compareDataFlavors(const css::datatransfer::DataFlavor &lFlavor, const css::datatransfer::DataFlavor &rFlavor)
Definition: dlgedclip.cxx:43
virtual css::uno::Sequence< css::datatransfer::DataFlavor > SAL_CALL getTransferDataFlavors() override
Definition: dlgedclip.cxx:83
css::uno::Sequence< css::uno::Any > m_SeqData
Definition: dlgedclip.hxx:34
virtual css::uno::Any SAL_CALL getTransferData(const css::datatransfer::DataFlavor &rFlavor) override
Definition: dlgedclip.cxx:63
virtual void SAL_CALL lostOwnership(const css::uno::Reference< css::datatransfer::clipboard::XClipboard > &xClipboard, const css::uno::Reference< css::datatransfer::XTransferable > &xTrans) override
Definition: dlgedclip.cxx:100
virtual ~DlgEdTransferableImpl() override
Definition: dlgedclip.cxx:40
css::uno::Sequence< css::datatransfer::DataFlavor > m_SeqFlavors
Definition: dlgedclip.hxx:33
constexpr OUStringLiteral aData
Reference< XComponentContext > getProcessComponentContext()
int i
unsigned char sal_Bool