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 .
19 #include "vbascrollbar.hxx"
22 using namespace com::sun::star
;
23 using namespace ooo::vba
;
26 const static OUString
LARGECHANGE( "BlockIncrement");
27 const static OUString
SMALLCHANGE( "LineIncrement");
28 const static OUString
SCROLLVALUE( "ScrollValue");
29 const static OUString
SCROLLMAX( "ScrollValueMax");
30 const static OUString
SCROLLMIN( "ScrollValueMin");
32 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
)
38 ScVbaScrollBar::getValue() throw (css::uno::RuntimeException
)
40 return m_xProps
->getPropertyValue( SCROLLVALUE
);
44 ScVbaScrollBar::setValue( const uno::Any
& _value
) throw (::com::sun::star::uno::RuntimeException
)
46 m_xProps
->setPropertyValue( SCROLLVALUE
, _value
);
50 ScVbaScrollBar::getMax() throw (uno::RuntimeException
)
53 m_xProps
->getPropertyValue( SCROLLMAX
) >>= nMax
;
58 ScVbaScrollBar::setMax( sal_Int32 nVal
) throw (uno::RuntimeException
)
60 m_xProps
->setPropertyValue( SCROLLMAX
, uno::makeAny( nVal
) );
64 ScVbaScrollBar::getMin() throw (uno::RuntimeException
)
67 m_xProps
->getPropertyValue( SCROLLMIN
) >>= nVal
;
72 ScVbaScrollBar::setMin( sal_Int32 nVal
) throw (uno::RuntimeException
)
74 m_xProps
->setPropertyValue( SCROLLMIN
, uno::makeAny( nVal
) );
78 ScVbaScrollBar::setLargeChange( ::sal_Int32 _largechange
) throw (uno::RuntimeException
)
80 m_xProps
->setPropertyValue( LARGECHANGE
, uno::makeAny( _largechange
) );
84 ScVbaScrollBar::getLargeChange() throw (uno::RuntimeException
)
87 m_xProps
->getPropertyValue( LARGECHANGE
) >>= nVal
;
92 ScVbaScrollBar::getSmallChange() throw (uno::RuntimeException
)
94 sal_Int32 nSmallChange
= 0;
95 m_xProps
->getPropertyValue( SMALLCHANGE
) >>= nSmallChange
;
100 ScVbaScrollBar::setSmallChange( ::sal_Int32 _smallchange
) throw (uno::RuntimeException
)
102 m_xProps
->setPropertyValue( SMALLCHANGE
, uno::makeAny( _smallchange
) );
106 ScVbaScrollBar::getServiceImplName()
108 return OUString("ScVbaScrollBar" );
111 uno::Sequence
< OUString
>
112 ScVbaScrollBar::getServiceNames()
114 static uno::Sequence
< OUString
> aServiceNames
;
115 if ( aServiceNames
.getLength() == 0 )
117 aServiceNames
.realloc( 1 );
118 aServiceNames
[ 0 ] = "ooo.vba.msforms.Frame";
120 return aServiceNames
;
123 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */