1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_VCL_OSX_DATAFLAVORMAPPING_HXX
21 #define INCLUDED_VCL_OSX_DATAFLAVORMAPPING_HXX
23 #include <com/sun/star/datatransfer/DataFlavor.hpp>
24 #include <com/sun/star/datatransfer/XMimeContentTypeFactory.hpp>
25 #include <com/sun/star/datatransfer/XTransferable.hpp>
26 #include <com/sun/star/lang/XMultiComponentFactory.hpp>
29 #import <Cocoa/Cocoa.h>
33 #include <unordered_map>
35 /* An interface to get the clipboard data in either
41 virtual ~DataProvider() {};
43 /* Get the clipboard data in the system format.
44 The caller has to retain/release the returned
47 virtual NSData
* getSystemData() = 0;
49 /* Get the clipboard data in OOo format.
51 virtual css::uno::Any
getOOoData() = 0;
54 typedef std::unique_ptr
<DataProvider
> DataProviderPtr_t
;
56 class DataFlavorMapper
59 /* Initialize a DataFavorMapper instance. Throws a RuntimeException in case the XMimeContentTypeFactory service
65 /* Map a system data flavor to an OpenOffice data flavor.
66 Return an empty string if there is not suitable
67 mapping from a system data flavor to an LibreOffice data
70 css::datatransfer::DataFlavor
systemToOpenOfficeFlavor( const NSString
* systemDataFlavor
) const;
72 /* Map an OpenOffice data flavor to a system data flavor.
73 If there is no suitable mapping available NULL will
76 const NSString
* openOfficeToSystemFlavor(const css::datatransfer::DataFlavor
& oooDataFlavor
, bool& rbInternal
) const;
78 /* Select the best available image data type
79 If there is no suitable mapping available NULL will
82 static NSString
* openOfficeImageToSystemFlavor(NSPasteboard
* pPasteboard
);
84 /* Get a data provider which is able to provide the data 'rTransferable' offers in a format that can
85 be put on to the system clipboard.
87 DataProviderPtr_t
getDataProvider( const NSString
* systemFlavor
,
88 const css::uno::Reference
< css::datatransfer::XTransferable
> & rTransferable
) const;
90 /* Get a data provider which is able to provide 'systemData' in the OOo expected format.
92 static DataProviderPtr_t
getDataProvider( const NSString
* systemFlavor
, NSArray
* systemData
);
94 /* Get a data provider which is able to provide 'systemData' in the OOo expected format.
96 static DataProviderPtr_t
getDataProvider( const NSString
* systemFlavor
, NSData
* systemData
);
98 /* Translate a sequence of DataFlavors into an NSArray of system types.
99 Only those DataFlavors for which a suitable mapping to a system
100 type exist will be contained in the returned types array.
102 NSArray
* flavorSequenceToTypesArray(const css::uno::Sequence
<css::datatransfer::DataFlavor
>& flavors
) const;
104 /* Translate an NSArray of system types into a sequence of DataFlavors.
105 Only those types for which a suitable mapping to a DataFlavor
106 exist will be contained in the new DataFlavor Sequence.
108 css::uno::Sequence
<css::datatransfer::DataFlavor
> typesArrayToFlavorSequence(NSArray
* types
) const;
110 /* Returns an NSArray containing all pasteboard types supported by OOo
112 static NSArray
* getAllSupportedPboardTypes();
115 /* Determines if the provided Mime content type is valid.
117 bool isValidMimeContentType(const OUString
& contentType
) const;
120 css::uno::Reference
< css::datatransfer::XMimeContentTypeFactory
> mrXMimeCntFactory
;
121 typedef std::unordered_map
< OUString
, NSString
* > OfficeOnlyTypes
;
122 mutable OfficeOnlyTypes maOfficeOnlyTypes
;
125 typedef std::shared_ptr
<DataFlavorMapper
> DataFlavorMapperPtr_t
;
127 #endif // INCLUDED_VCL_OSX_DATAFLAVORMAPPING_HXX
129 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */