Branch libreoffice-5-0-4
[LibreOffice.git] / include / toolkit / controls / geometrycontrolmodel_impl.hxx
blobb8054dd27dc018a7ffe6f84706ac965a9e4e35e1
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
23 //= OGeometryControlModel
26 template <class CONTROLMODEL>
27 OGeometryControlModel<CONTROLMODEL>::OGeometryControlModel( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& i_factory )
28 :OGeometryControlModel_Base(new CONTROLMODEL( i_factory ) )
33 template <class CONTROLMODEL>
34 OGeometryControlModel<CONTROLMODEL>::OGeometryControlModel(::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >& _rxAggregateInstance)
35 :OGeometryControlModel_Base(_rxAggregateInstance)
40 template <class CONTROLMODEL>
41 ::cppu::IPropertyArrayHelper& SAL_CALL OGeometryControlModel<CONTROLMODEL>::getInfoHelper()
43 return *this->getArrayHelper();
47 template <class CONTROLMODEL>
48 void OGeometryControlModel<CONTROLMODEL>::fillProperties(::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _rProps, ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _rAggregateProps) const
50 // our own properties
51 OPropertyContainer::describeProperties(_rProps);
52 // the aggregate properties
53 if (m_xAggregateSet.is())
54 _rAggregateProps = m_xAggregateSet->getPropertySetInfo()->getProperties();
58 template <class CONTROLMODEL>
59 ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL OGeometryControlModel<CONTROLMODEL>::getImplementationId( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
61 return css::uno::Sequence<sal_Int8>();
65 template <class CONTROLMODEL>
66 OGeometryControlModel_Base* OGeometryControlModel<CONTROLMODEL>::createClone_Impl(
67 ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >& _rxAggregateInstance)
69 return new OGeometryControlModel<CONTROLMODEL>(_rxAggregateInstance);
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */