android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / ui / vba / vbalisttemplate.cxx
blob032bc98162f52391184ffb6974bac8b393941404
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 .
19 #include "vbalisttemplate.hxx"
20 #include "vbalistlevels.hxx"
21 #include <com/sun/star/beans/XPropertySet.hpp>
23 using namespace ::ooo::vba;
24 using namespace ::com::sun::star;
26 SwVbaListTemplate::SwVbaListTemplate( const uno::Reference< ooo::vba::XHelperInterface >& rParent, const uno::Reference< uno::XComponentContext >& rContext, const uno::Reference< text::XTextDocument >& xTextDoc, sal_Int32 nGalleryType, sal_Int32 nTemplateType ) : SwVbaListTemplate_BASE( rParent, rContext )
28 m_pListHelper = std::make_shared<SwVbaListHelper>( xTextDoc, nGalleryType, nTemplateType );
31 SwVbaListTemplate::~SwVbaListTemplate()
35 uno::Any SAL_CALL
36 SwVbaListTemplate::ListLevels( const uno::Any& index )
38 uno::Reference< XCollection > xCol( new SwVbaListLevels( mxParent, mxContext, m_pListHelper ) );
39 if ( index.hasValue() )
40 return xCol->Item( index, uno::Any() );
41 return uno::Any( xCol );
44 void SwVbaListTemplate::applyListTemplate( uno::Reference< beans::XPropertySet > const & xProps )
46 uno::Reference< container::XIndexReplace > xNumberingRules = m_pListHelper->getNumberingRules();
47 xProps->setPropertyValue("NumberingRules", uno::Any( xNumberingRules ) );
50 OUString
51 SwVbaListTemplate::getServiceImplName()
53 return "SwVbaListTemplate";
56 uno::Sequence< OUString >
57 SwVbaListTemplate::getServiceNames()
59 static uno::Sequence< OUString > const aServiceNames
61 "ooo.vba.word.ListTemplate"
63 return aServiceNames;
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */