bump product version to 5.0.4.1
[LibreOffice.git] / vbahelper / source / msforms / vbascrollbar.cxx
blobc9c846f042b612a5e5c0cf4adca6b1e81af0c651
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 "vbascrollbar.hxx"
22 using namespace com::sun::star;
23 using namespace ooo::vba;
25 ScVbaScrollBar::ScVbaScrollBar( 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 ) : ScrollBarImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
29 // Attributes
30 uno::Any SAL_CALL
31 ScVbaScrollBar::getValue() throw (css::uno::RuntimeException, std::exception)
33 return m_xProps->getPropertyValue( "ScrollValue" );
36 void SAL_CALL
37 ScVbaScrollBar::setValue( const uno::Any& _value ) throw (::com::sun::star::uno::RuntimeException, std::exception)
39 m_xProps->setPropertyValue( "ScrollValue", _value );
42 ::sal_Int32 SAL_CALL
43 ScVbaScrollBar::getMax() throw (uno::RuntimeException, std::exception)
45 sal_Int32 nMax = 0;
46 m_xProps->getPropertyValue( "ScrollValueMax" ) >>= nMax;
47 return nMax;
50 void SAL_CALL
51 ScVbaScrollBar::setMax( sal_Int32 nVal ) throw (uno::RuntimeException, std::exception)
53 m_xProps->setPropertyValue( "ScrollValueMax", uno::makeAny( nVal ) );
56 ::sal_Int32 SAL_CALL
57 ScVbaScrollBar::getMin() throw (uno::RuntimeException, std::exception)
59 sal_Int32 nVal = 0;
60 m_xProps->getPropertyValue( "ScrollValueMin" ) >>= nVal;
61 return nVal;
64 void SAL_CALL
65 ScVbaScrollBar::setMin( sal_Int32 nVal ) throw (uno::RuntimeException, std::exception)
67 m_xProps->setPropertyValue( "ScrollValueMin", uno::makeAny( nVal ) );
70 void SAL_CALL
71 ScVbaScrollBar::setLargeChange( ::sal_Int32 _largechange ) throw (uno::RuntimeException, std::exception)
73 m_xProps->setPropertyValue( "BlockIncrement", uno::makeAny( _largechange ) );
76 ::sal_Int32 SAL_CALL
77 ScVbaScrollBar::getLargeChange() throw (uno::RuntimeException, std::exception)
79 sal_Int32 nVal = 0;
80 m_xProps->getPropertyValue( "BlockIncrement" ) >>= nVal;
81 return nVal;
84 ::sal_Int32 SAL_CALL
85 ScVbaScrollBar::getSmallChange() throw (uno::RuntimeException, std::exception)
87 sal_Int32 nSmallChange = 0;
88 m_xProps->getPropertyValue( "LineIncrement" ) >>= nSmallChange;
89 return nSmallChange;
92 void SAL_CALL
93 ScVbaScrollBar::setSmallChange( ::sal_Int32 _smallchange ) throw (uno::RuntimeException, std::exception)
95 m_xProps->setPropertyValue( "LineIncrement", uno::makeAny( _smallchange ) );
98 OUString
99 ScVbaScrollBar::getServiceImplName()
101 return OUString("ScVbaScrollBar" );
104 uno::Sequence< OUString >
105 ScVbaScrollBar::getServiceNames()
107 static uno::Sequence< OUString > aServiceNames;
108 if ( aServiceNames.getLength() == 0 )
110 aServiceNames.realloc( 1 );
111 aServiceNames[ 0 ] = "ooo.vba.msforms.Frame";
113 return aServiceNames;
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */