1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #include "vbascrollbar.hxx"
31 using namespace com::sun::star
;
32 using namespace ooo::vba
;
35 const static rtl::OUString
LARGECHANGE( RTL_CONSTASCII_USTRINGPARAM("BlockIncrement") );
36 const static rtl::OUString
SMALLCHANGE( RTL_CONSTASCII_USTRINGPARAM("LineIncrement") );
37 const static rtl::OUString
SCROLLVALUE( RTL_CONSTASCII_USTRINGPARAM("ScrollValue") );
38 const static rtl::OUString
SCROLLMAX( RTL_CONSTASCII_USTRINGPARAM("ScrollValueMax") );
39 const static rtl::OUString
SCROLLMIN( RTL_CONSTASCII_USTRINGPARAM("ScrollValueMin") );
41 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
)
47 ScVbaScrollBar::getValue() throw (css::uno::RuntimeException
)
49 return m_xProps
->getPropertyValue( SCROLLVALUE
);
53 ScVbaScrollBar::setValue( const uno::Any
& _value
) throw (::com::sun::star::uno::RuntimeException
)
55 m_xProps
->setPropertyValue( SCROLLVALUE
, _value
);
59 ScVbaScrollBar::getMax() throw (uno::RuntimeException
)
62 m_xProps
->getPropertyValue( SCROLLMAX
) >>= nMax
;
67 ScVbaScrollBar::setMax( sal_Int32 nVal
) throw (uno::RuntimeException
)
69 m_xProps
->setPropertyValue( SCROLLMAX
, uno::makeAny( nVal
) );
73 ScVbaScrollBar::getMin() throw (uno::RuntimeException
)
76 m_xProps
->getPropertyValue( SCROLLMIN
) >>= nVal
;
81 ScVbaScrollBar::setMin( sal_Int32 nVal
) throw (uno::RuntimeException
)
83 m_xProps
->setPropertyValue( SCROLLMIN
, uno::makeAny( nVal
) );
87 ScVbaScrollBar::setLargeChange( ::sal_Int32 _largechange
) throw (uno::RuntimeException
)
89 m_xProps
->setPropertyValue( LARGECHANGE
, uno::makeAny( _largechange
) );
93 ScVbaScrollBar::getLargeChange() throw (uno::RuntimeException
)
96 m_xProps
->getPropertyValue( LARGECHANGE
) >>= nVal
;
101 ScVbaScrollBar::getSmallChange() throw (uno::RuntimeException
)
103 sal_Int32 nSmallChange
= 0;
104 m_xProps
->getPropertyValue( SMALLCHANGE
) >>= nSmallChange
;
109 ScVbaScrollBar::setSmallChange( ::sal_Int32 _smallchange
) throw (uno::RuntimeException
)
111 m_xProps
->setPropertyValue( SMALLCHANGE
, uno::makeAny( _smallchange
) );
115 ScVbaScrollBar::getServiceImplName()
117 return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScVbaScrollBar"));
120 uno::Sequence
< rtl::OUString
>
121 ScVbaScrollBar::getServiceNames()
123 static uno::Sequence
< rtl::OUString
> aServiceNames
;
124 if ( aServiceNames
.getLength() == 0 )
126 aServiceNames
.realloc( 1 );
127 aServiceNames
[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.msforms.Frame" ) );
129 return aServiceNames
;
132 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */