Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / sw / inc / unofieldcoll.hxx
blob5d30d19bef11f436783587165b6f285647b343fd
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_SW_INC_UNOFIELDCOLL_HXX
21 #define INCLUDED_SW_INC_UNOFIELDCOLL_HXX
23 #include <memory>
25 #include <com/sun/star/util/XRefreshable.hpp>
27 #include <unocoll.hxx>
29 class SwFieldType;
31 typedef ::cppu::WeakImplHelper
32 < css::container::XNameAccess
33 , css::lang::XServiceInfo
34 > SwXTextFieldMasters_Base;
36 class SwXTextFieldMasters
37 : public SwXTextFieldMasters_Base
38 , public SwUnoCollection
40 protected:
41 virtual ~SwXTextFieldMasters() override;
43 public:
44 SwXTextFieldMasters(SwDoc* pDoc);
46 static bool getInstanceName(const SwFieldType& rFieldType, OUString& rName);
48 // XServiceInfo
49 virtual OUString SAL_CALL getImplementationName() override;
50 virtual sal_Bool SAL_CALL supportsService(
51 const OUString& rServiceName) override;
52 virtual css::uno::Sequence< OUString > SAL_CALL
53 getSupportedServiceNames() override;
55 // XElementAccess
56 virtual css::uno::Type SAL_CALL getElementType() override;
57 virtual sal_Bool SAL_CALL hasElements() override;
59 // XNameAccess
60 virtual css::uno::Any SAL_CALL getByName(
61 const OUString& rName) override;
62 virtual css::uno::Sequence< OUString > SAL_CALL
63 getElementNames() override;
64 virtual sal_Bool SAL_CALL hasByName(const OUString& rName) override;
68 typedef ::cppu::WeakImplHelper
69 < css::container::XEnumerationAccess
70 , css::lang::XServiceInfo
71 , css::util::XRefreshable
72 > SwXTextFieldTypes_Base;
74 class SwXTextFieldTypes
75 : public SwXTextFieldTypes_Base
76 , public SwUnoCollection
78 private:
79 class Impl;
80 std::unique_ptr<Impl> m_pImpl; // currently does not need UnoImplPtr
82 protected:
83 virtual ~SwXTextFieldTypes() override;
85 public:
86 SwXTextFieldTypes(SwDoc* pDoc);
88 // SwUnoCollection
89 virtual void Invalidate() override;
91 // XServiceInfo
92 virtual OUString SAL_CALL getImplementationName() override;
93 virtual sal_Bool SAL_CALL supportsService(
94 const OUString& rServiceName) override;
95 virtual css::uno::Sequence< OUString > SAL_CALL
96 getSupportedServiceNames() override;
98 // XElementAccess
99 virtual css::uno::Type SAL_CALL getElementType() override;
100 virtual sal_Bool SAL_CALL hasElements() override;
102 // XEnumerationAccess
103 virtual css::uno::Reference<
104 css::container::XEnumeration > SAL_CALL
105 createEnumeration() override;
107 // XRefreshable
108 virtual void SAL_CALL refresh() override;
109 virtual void SAL_CALL addRefreshListener(
110 const css::uno::Reference<
111 css::util::XRefreshListener>& xListener) override;
112 virtual void SAL_CALL removeRefreshListener(
113 const css::uno::Reference<
114 css::util::XRefreshListener>& xListener) override;
118 #endif
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */