Line data Source code
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 : #ifndef INCLUDED_SVX_XMLEXCHG_HXX
21 : #define INCLUDED_SVX_XMLEXCHG_HXX
22 :
23 : #include <rtl/ustring.hxx>
24 : #include <svtools/transfer.hxx>
25 : #include <svx/svxdllapi.h>
26 :
27 : namespace com {
28 : namespace sun {
29 : namespace star {
30 : namespace beans {
31 : class SAL_NO_VTABLE XPropertySet;
32 : }
33 : }
34 : }
35 : }
36 :
37 :
38 : namespace svx
39 : {
40 :
41 :
42 :
43 :
44 : //= OXFormsDescriptor
45 :
46 :
47 0 : struct SVX_DLLPUBLIC OXFormsDescriptor {
48 :
49 : OUString szName;
50 : OUString szServiceName;
51 : css::uno::Reference< css::beans::XPropertySet > xPropSet;
52 :
53 0 : inline OXFormsDescriptor() {}
54 0 : inline OXFormsDescriptor( const OXFormsDescriptor &rhs ) { *this=rhs; }
55 0 : inline OXFormsDescriptor &operator = ( const OXFormsDescriptor &rhs ) {
56 0 : szName = rhs.szName;
57 0 : szServiceName = rhs.szServiceName;
58 0 : xPropSet = rhs.xPropSet;
59 0 : return (*this);
60 : }
61 : };
62 :
63 :
64 : //= OXFormsTransferable
65 :
66 0 : class SVX_DLLPUBLIC OXFormsTransferable : public TransferableHelper {
67 :
68 : protected:
69 :
70 : // TransferableHelper overridables
71 : virtual void AddSupportedFormats() SAL_OVERRIDE;
72 : virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) SAL_OVERRIDE;
73 :
74 : OXFormsDescriptor m_aDescriptor;
75 :
76 : public:
77 :
78 : /** construct the transferable
79 : */
80 : OXFormsTransferable( const OXFormsDescriptor &rhs );
81 :
82 : /** extracts an xform descriptor from the transferable given
83 : */
84 : static const OXFormsDescriptor &extractDescriptor( const TransferableDataHelper& _rData );
85 : };
86 :
87 :
88 :
89 : }
90 :
91 :
92 : #endif // INCLUDED_SVX_XMLEXCHG_HXX
93 :
94 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|