bump product version to 5.0.4.1
[LibreOffice.git] / vbahelper / source / msforms / vbaspinbutton.cxx
blob440b07202b0b4582f60c28dea2bf6a7531bfdf7d
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 #include "vbaspinbutton.hxx"
22 using namespace com::sun::star;
23 using namespace ooo::vba;
25 ScVbaSpinButton::ScVbaSpinButton( const css::uno::Reference< ov::XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< uno::XInterface >& xControl, const uno::Reference< frame::XModel >& xModel, AbstractGeometryAttributes* pGeomHelper ) : SpinButtonImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
29 // Attributes
30 uno::Any SAL_CALL
31 ScVbaSpinButton::getValue() throw (css::uno::RuntimeException, std::exception)
33 return m_xProps->getPropertyValue( "SpinValue" );
36 void SAL_CALL
37 ScVbaSpinButton::setValue( const uno::Any& _value ) throw (::com::sun::star::uno::RuntimeException, std::exception)
39 m_xProps->setPropertyValue( "SpinValue", _value );
42 ::sal_Int32 SAL_CALL
43 ScVbaSpinButton::getMax() throw (uno::RuntimeException, std::exception)
45 sal_Int32 nMax = 0;
46 m_xProps->getPropertyValue( "SpinValueMax" ) >>= nMax;
47 return nMax;
50 void SAL_CALL
51 ScVbaSpinButton::setMax( sal_Int32 nVal ) throw (uno::RuntimeException, std::exception)
53 m_xProps->setPropertyValue( "SpinValueMax", uno::makeAny( nVal ) );
56 ::sal_Int32 SAL_CALL
57 ScVbaSpinButton::getMin() throw (uno::RuntimeException, std::exception)
59 sal_Int32 nVal = 0;
60 m_xProps->getPropertyValue( "SpinValueMin" ) >>= nVal;
61 return nVal;
64 void SAL_CALL
65 ScVbaSpinButton::setMin( sal_Int32 nVal ) throw (uno::RuntimeException, std::exception)
67 m_xProps->setPropertyValue( "SpinValueMin", uno::makeAny( nVal ) );
70 OUString
71 ScVbaSpinButton::getServiceImplName()
73 return OUString( "ScVbaSpinButton" );
76 uno::Sequence< OUString >
77 ScVbaSpinButton::getServiceNames()
79 static uno::Sequence< OUString > aServiceNames;
80 if ( aServiceNames.getLength() == 0 )
82 aServiceNames.realloc( 1 );
83 aServiceNames[ 0 ] = "ooo.vba.msforms.Frame";
85 return aServiceNames;
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */