bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / editeng / unonrule.hxx
blobfa53867bce7b321ae3598593e65f5b8cf9772129
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_UNONRULE_HXX
21 #define INCLUDED_EDITENG_UNONRULE_HXX
23 #include <com/sun/star/container/XIndexReplace.hpp>
24 #include <com/sun/star/ucb/XAnyCompare.hpp>
25 #include <editeng/editengdllapi.h>
26 #include <cppuhelper/implbase5.hxx>
27 #include <com/sun/star/lang/XUnoTunnel.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/util/XCloneable.hpp>
30 #include <editeng/numitem.hxx>
31 #include <comphelper/servicehelper.hxx>
33 namespace com::sun::star::beans { struct PropertyValue; }
35 EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(const SvxNumRule* pRule);
36 EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule();
37 /// @throws css::lang::IllegalArgumentException
38 const SvxNumRule& SvxGetNumRule( css::uno::Reference< css::container::XIndexReplace > const & xRule );
39 EDITENG_DLLPUBLIC css::uno::Reference< css::ucb::XAnyCompare > SvxCreateNumRuleCompare() throw();
41 class SvxUnoNumberingRules : public ::cppu::WeakAggImplHelper5< css::container::XIndexReplace, css::ucb::XAnyCompare,
42 css::lang::XUnoTunnel, css::util::XCloneable, css::lang::XServiceInfo >
44 private:
45 SvxNumRule maRule;
46 public:
47 SvxUnoNumberingRules(const SvxNumRule& rRule);
48 virtual ~SvxUnoNumberingRules() throw() override;
50 UNO3_GETIMPLEMENTATION_DECL( SvxUnoNumberingRules )
52 //XIndexReplace
53 virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const css::uno::Any& Element ) override;
55 //XIndexAccess
56 virtual sal_Int32 SAL_CALL getCount() override ;
57 virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) override;
59 //XElementAccess
60 virtual css::uno::Type SAL_CALL getElementType() override;
61 virtual sal_Bool SAL_CALL hasElements() override;
63 // XAnyCompare
64 virtual sal_Int16 SAL_CALL compare( const css::uno::Any& Any1, const css::uno::Any& Any2 ) override;
66 // XCloneable
67 virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) override;
69 // XServiceInfo
70 virtual OUString SAL_CALL getImplementationName( ) override;
71 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
72 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
74 // internal
75 /// @throws css::uno::RuntimeException
76 css::uno::Sequence<css::beans::PropertyValue> getNumberingRuleByIndex( sal_Int32 nIndex) const;
77 /// @throws css::uno::RuntimeException
78 /// @throws css::lang::IllegalArgumentException
79 void setNumberingRuleByIndex(const css::uno::Sequence<css::beans::PropertyValue>& rProperties, sal_Int32 nIndex);
81 static sal_Int16 Compare( const css::uno::Any& rAny1, const css::uno::Any& rAny2 );
83 const SvxNumRule& getNumRule() const { return maRule; }
87 #endif
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */