Version 24.2.2.2, tag libreoffice-24.2.2.2
[LibreOffice.git] / toolkit / inc / controls / geometrycontrolmodel_impl.hxx
blob2ec8595dddf179698e85ede0d1e046c743f1c70c
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 // no include protection. This is included from within geometrycontrolmodel.hxx only
22 //= OGeometryControlModel
24 template <class CONTROLMODEL>
25 OGeometryControlModel<CONTROLMODEL>::OGeometryControlModel(
26 const css::uno::Reference<css::uno::XComponentContext>& i_factory)
27 : OGeometryControlModel_Base(new CONTROLMODEL(i_factory))
31 template <class CONTROLMODEL>
32 OGeometryControlModel<CONTROLMODEL>::OGeometryControlModel(
33 css::uno::Reference<css::util::XCloneable>& _rxAggregateInstance)
34 : OGeometryControlModel_Base(_rxAggregateInstance)
38 template <class CONTROLMODEL>
39 ::cppu::IPropertyArrayHelper& SAL_CALL OGeometryControlModel<CONTROLMODEL>::getInfoHelper()
41 return *this->getArrayHelper();
44 template <class CONTROLMODEL>
45 void OGeometryControlModel<CONTROLMODEL>::fillProperties(
46 css::uno::Sequence<css::beans::Property>& _rProps,
47 css::uno::Sequence<css::beans::Property>& _rAggregateProps) const
49 // our own properties
50 OPropertyContainer::describeProperties(_rProps);
51 // the aggregate properties
52 if (m_xAggregateSet.is())
53 _rAggregateProps = m_xAggregateSet->getPropertySetInfo()->getProperties();
56 template <class CONTROLMODEL>
57 css::uno::Sequence<sal_Int8> SAL_CALL OGeometryControlModel<CONTROLMODEL>::getImplementationId()
59 return css::uno::Sequence<sal_Int8>();
62 template <class CONTROLMODEL>
63 rtl::Reference<OGeometryControlModel_Base> OGeometryControlModel<CONTROLMODEL>::createClone_Impl(
64 css::uno::Reference<css::util::XCloneable>& _rxAggregateInstance)
66 return new OGeometryControlModel<CONTROLMODEL>(_rxAggregateInstance);
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */