1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
)
31 ScVbaScrollBar::getValue() throw (css::uno::RuntimeException
, std::exception
)
33 return m_xProps
->getPropertyValue( "ScrollValue" );
37 ScVbaScrollBar::setValue( const uno::Any
& _value
) throw (::com::sun::star::uno::RuntimeException
, std::exception
)
39 m_xProps
->setPropertyValue( "ScrollValue", _value
);
43 ScVbaScrollBar::getMax() throw (uno::RuntimeException
, std::exception
)
46 m_xProps
->getPropertyValue( "ScrollValueMax" ) >>= nMax
;
51 ScVbaScrollBar::setMax( sal_Int32 nVal
) throw (uno::RuntimeException
, std::exception
)
53 m_xProps
->setPropertyValue( "ScrollValueMax", uno::makeAny( nVal
) );
57 ScVbaScrollBar::getMin() throw (uno::RuntimeException
, std::exception
)
60 m_xProps
->getPropertyValue( "ScrollValueMin" ) >>= nVal
;
65 ScVbaScrollBar::setMin( sal_Int32 nVal
) throw (uno::RuntimeException
, std::exception
)
67 m_xProps
->setPropertyValue( "ScrollValueMin", uno::makeAny( nVal
) );
71 ScVbaScrollBar::setLargeChange( ::sal_Int32 _largechange
) throw (uno::RuntimeException
, std::exception
)
73 m_xProps
->setPropertyValue( "BlockIncrement", uno::makeAny( _largechange
) );
77 ScVbaScrollBar::getLargeChange() throw (uno::RuntimeException
, std::exception
)
80 m_xProps
->getPropertyValue( "BlockIncrement" ) >>= nVal
;
85 ScVbaScrollBar::getSmallChange() throw (uno::RuntimeException
, std::exception
)
87 sal_Int32 nSmallChange
= 0;
88 m_xProps
->getPropertyValue( "LineIncrement" ) >>= nSmallChange
;
93 ScVbaScrollBar::setSmallChange( ::sal_Int32 _smallchange
) throw (uno::RuntimeException
, std::exception
)
95 m_xProps
->setPropertyValue( "LineIncrement", uno::makeAny( _smallchange
) );
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: */