Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / vbahelper / source / msforms / vbascrollbar.cxx
blob94def0f3e7f3898fa1fba01e270bb34b4ca280ea
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 .
19 #include "vbascrollbar.hxx"
20 #include <vector>
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 )
36 // Attributes
37 uno::Any SAL_CALL
38 ScVbaScrollBar::getValue() throw (css::uno::RuntimeException)
40 return m_xProps->getPropertyValue( SCROLLVALUE );
43 void SAL_CALL
44 ScVbaScrollBar::setValue( const uno::Any& _value ) throw (::com::sun::star::uno::RuntimeException)
46 m_xProps->setPropertyValue( SCROLLVALUE, _value );
49 ::sal_Int32 SAL_CALL
50 ScVbaScrollBar::getMax() throw (uno::RuntimeException)
52 sal_Int32 nMax = 0;
53 m_xProps->getPropertyValue( SCROLLMAX ) >>= nMax;
54 return nMax;
57 void SAL_CALL
58 ScVbaScrollBar::setMax( sal_Int32 nVal ) throw (uno::RuntimeException)
60 m_xProps->setPropertyValue( SCROLLMAX, uno::makeAny( nVal ) );
63 ::sal_Int32 SAL_CALL
64 ScVbaScrollBar::getMin() throw (uno::RuntimeException)
66 sal_Int32 nVal = 0;
67 m_xProps->getPropertyValue( SCROLLMIN ) >>= nVal;
68 return nVal;
71 void SAL_CALL
72 ScVbaScrollBar::setMin( sal_Int32 nVal ) throw (uno::RuntimeException)
74 m_xProps->setPropertyValue( SCROLLMIN, uno::makeAny( nVal ) );
77 void SAL_CALL
78 ScVbaScrollBar::setLargeChange( ::sal_Int32 _largechange ) throw (uno::RuntimeException)
80 m_xProps->setPropertyValue( LARGECHANGE, uno::makeAny( _largechange ) );
83 ::sal_Int32 SAL_CALL
84 ScVbaScrollBar::getLargeChange() throw (uno::RuntimeException)
86 sal_Int32 nVal = 0;
87 m_xProps->getPropertyValue( LARGECHANGE ) >>= nVal;
88 return nVal;
91 ::sal_Int32 SAL_CALL
92 ScVbaScrollBar::getSmallChange() throw (uno::RuntimeException)
94 sal_Int32 nSmallChange = 0;
95 m_xProps->getPropertyValue( SMALLCHANGE ) >>= nSmallChange;
96 return nSmallChange;
99 void SAL_CALL
100 ScVbaScrollBar::setSmallChange( ::sal_Int32 _smallchange ) throw (uno::RuntimeException)
102 m_xProps->setPropertyValue( SMALLCHANGE, uno::makeAny( _smallchange ) );
105 OUString
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: */