bump product version to 6.3.0.0.beta1
[LibreOffice.git] / vbahelper / source / msforms / vbasystemaxcontrol.cxx
blobd1c42c3746b2a42121cfd16047c23f20af439172
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 "vbasystemaxcontrol.hxx"
21 using namespace com::sun::star;
22 using namespace ooo::vba;
25 VbaSystemAXControl::VbaSystemAXControl( const uno::Reference< ov::XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< uno::XInterface >& xControl, const uno::Reference< frame::XModel >& xModel, std::unique_ptr<AbstractGeometryAttributes> pGeomHelper )
26 : SystemAXControlImpl_BASE( xParent, xContext, xControl, xModel, std::move(pGeomHelper) )
27 , m_xControlInvocation( xControl, uno::UNO_QUERY_THROW )
32 uno::Reference< beans::XIntrospectionAccess > SAL_CALL VbaSystemAXControl::getIntrospection()
34 return m_xControlInvocation->getIntrospection();
38 uno::Any SAL_CALL VbaSystemAXControl::invoke( const OUString& aFunctionName, const uno::Sequence< uno::Any >& aParams, uno::Sequence< ::sal_Int16 >& aOutParamIndex, uno::Sequence< uno::Any >& aOutParam )
40 return m_xControlInvocation->invoke( aFunctionName, aParams, aOutParamIndex, aOutParam );
44 void SAL_CALL VbaSystemAXControl::setValue( const OUString& aPropertyName, const uno::Any& aValue )
46 m_xControlInvocation->setValue( aPropertyName, aValue );
50 uno::Any SAL_CALL VbaSystemAXControl::getValue( const OUString& aPropertyName )
52 return m_xControlInvocation->getValue( aPropertyName );
56 sal_Bool SAL_CALL VbaSystemAXControl::hasMethod( const OUString& aName )
58 return m_xControlInvocation->hasMethod( aName );
62 sal_Bool SAL_CALL VbaSystemAXControl::hasProperty( const OUString& aName )
64 return m_xControlInvocation->hasProperty( aName );
68 OUString
69 VbaSystemAXControl::getServiceImplName()
71 return OUString( "VbaSystemAXControl" );
75 uno::Sequence< OUString >
76 VbaSystemAXControl::getServiceNames()
78 static uno::Sequence< OUString > const aServiceNames
80 "ooo.vba.msforms.Frame"
82 return aServiceNames;
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */