LibreOffice Module editeng (master) 1
unonrule.hxx
Go to the documentation of this file.
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_EDITENG_UNONRULE_HXX
21#define INCLUDED_EDITENG_UNONRULE_HXX
22
23#include <com/sun/star/container/XIndexReplace.hpp>
24#include <com/sun/star/ucb/XAnyCompare.hpp>
27#include <com/sun/star/lang/XServiceInfo.hpp>
28#include <com/sun/star/util/XCloneable.hpp>
29#include <editeng/numitem.hxx>
30
31namespace com::sun::star::beans { struct PropertyValue; }
32
33EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(const SvxNumRule& rRule);
34css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule();
36const SvxNumRule& SvxGetNumRule( css::uno::Reference< css::container::XIndexReplace > const & xRule );
37EDITENG_DLLPUBLIC css::uno::Reference< css::ucb::XAnyCompare > SvxCreateNumRuleCompare() noexcept;
38
39class SvxUnoNumberingRules final : public ::cppu::WeakAggImplHelper4< css::container::XIndexReplace, css::ucb::XAnyCompare,
40 css::util::XCloneable, css::lang::XServiceInfo >
41{
42private:
44public:
46 virtual ~SvxUnoNumberingRules() noexcept override;
47
48 //XIndexReplace
49 virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const css::uno::Any& Element ) override;
50
51 //XIndexAccess
52 virtual sal_Int32 SAL_CALL getCount() override ;
53 virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) override;
54
55 //XElementAccess
56 virtual css::uno::Type SAL_CALL getElementType() override;
57 virtual sal_Bool SAL_CALL hasElements() override;
58
59 // XAnyCompare
60 virtual sal_Int16 SAL_CALL compare( const css::uno::Any& Any1, const css::uno::Any& Any2 ) override;
61
62 // XCloneable
63 virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) override;
64
65 // XServiceInfo
66 virtual OUString SAL_CALL getImplementationName( ) override;
67 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
68 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
69
70 // internal
72 css::uno::Sequence<css::beans::PropertyValue> getNumberingRuleByIndex( sal_Int32 nIndex) const;
75 void setNumberingRuleByIndex(const css::uno::Sequence<css::beans::PropertyValue>& rProperties, sal_Int32 nIndex);
76
77 static sal_Int16 Compare( const css::uno::Any& rAny1, const css::uno::Any& rAny2 );
78
79 const SvxNumRule& getNumRule() const { return maRule; }
80};
81
82
83#endif
84
85
86/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
struct _ADOIndex Index
SvxNumRule maRule
Definition: unonrule.hxx:43
#define EDITENG_DLLPUBLIC
Definition: editengdllapi.h:28
Type
unsigned char sal_Bool
EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(const SvxNumRule &rRule)
Definition: unonrule.cxx:481
EDITENG_DLLPUBLIC css::uno::Reference< css::ucb::XAnyCompare > SvxCreateNumRuleCompare() noexcept
Definition: unonrule.cxx:534
const SvxNumRule & SvxGetNumRule(css::uno::Reference< css::container::XIndexReplace > const &xRule)