nss: upgrade to release 3.73
[LibreOffice.git] / include / editeng / unofield.hxx
blob8eb521066347c61645f1bfbeb6870e21fd973332
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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_EDITENG_UNOFIELD_HXX
21 #define INCLUDED_EDITENG_UNOFIELD_HXX
23 #include <com/sun/star/lang/XUnoTunnel.hpp>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/text/XTextField.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <cppuhelper/component.hxx>
28 #include <editeng/editengdllapi.h>
30 #include <editeng/mutxhelp.hxx>
31 #include <memory>
33 namespace com::sun::star::beans { class XPropertySetInfo; }
35 class SvxUnoFieldData_Impl;
36 class SfxItemPropertySet;
37 class SvxFieldData;
39 /// @throws css::uno::Exception
40 /// @throws css::uno::RuntimeException
41 css::uno::Reference< css::uno::XInterface > EDITENG_DLLPUBLIC SvxUnoTextCreateTextField(
42 const OUString& ServiceSpecifier );
44 class EDITENG_DLLPUBLIC SvxUnoTextField final : public SvxMutexHelper,
45 public ::cppu::OComponentHelper,
46 public css::text::XTextField,
47 public css::beans::XPropertySet,
48 public css::lang::XServiceInfo,
49 public css::lang::XUnoTunnel
51 css::uno::Reference< css::text::XTextRange > mxAnchor;
52 const SfxItemPropertySet* mpPropSet;
53 sal_Int32 mnServiceId;
54 std::unique_ptr<SvxUnoFieldData_Impl> mpImpl;
55 css::uno::Sequence< css::uno::Type > maTypeSequence;
57 public:
58 SvxUnoTextField( sal_Int32 nServiceId ) throw();
59 SvxUnoTextField( css::uno::Reference< css::text::XTextRange > const & xAnchor, const OUString& rPresentation, const SvxFieldData* pFieldData ) throw();
60 virtual ~SvxUnoTextField() throw() override;
62 // Internal
63 std::unique_ptr<SvxFieldData> CreateFieldData() const throw();
65 static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
66 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
68 // css::uno::XInterface
69 virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type & rType ) override;
70 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
71 virtual void SAL_CALL acquire() throw() override;
72 virtual void SAL_CALL release() throw() override;
74 // css::lang::XTypeProvider
75 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
76 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) override;
78 // XTextField
79 virtual OUString SAL_CALL getPresentation( sal_Bool bShowCommand ) override;
81 // XTextContent
82 virtual void SAL_CALL attach( const css::uno::Reference< css::text::XTextRange >& xTextRange ) override;
83 virtual css::uno::Reference< css::text::XTextRange > SAL_CALL getAnchor( ) override;
85 // css::lang::XComponent
86 virtual void SAL_CALL dispose() override;
87 virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) override;
88 virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& aListener ) override;
90 // XPropertySet
91 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override;
92 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
93 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
94 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
95 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
96 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
97 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
99 // OComponentHelper
100 virtual void SAL_CALL disposing() override;
102 // XServiceInfo
103 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
104 virtual OUString SAL_CALL getImplementationName() override;
105 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
108 #endif
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */