Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "vbascrollbar.hxx"
21 :
22 : using namespace com::sun::star;
23 : using namespace ooo::vba;
24 :
25 0 : 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 )
26 : {
27 0 : }
28 :
29 : // Attributes
30 : uno::Any SAL_CALL
31 0 : ScVbaScrollBar::getValue() throw (css::uno::RuntimeException, std::exception)
32 : {
33 0 : return m_xProps->getPropertyValue( "ScrollValue" );
34 : }
35 :
36 : void SAL_CALL
37 0 : ScVbaScrollBar::setValue( const uno::Any& _value ) throw (::com::sun::star::uno::RuntimeException, std::exception)
38 : {
39 0 : m_xProps->setPropertyValue( "ScrollValue", _value );
40 0 : }
41 :
42 : ::sal_Int32 SAL_CALL
43 0 : ScVbaScrollBar::getMax() throw (uno::RuntimeException, std::exception)
44 : {
45 0 : sal_Int32 nMax = 0;
46 0 : m_xProps->getPropertyValue( "ScrollValueMax" ) >>= nMax;
47 0 : return nMax;
48 : }
49 :
50 : void SAL_CALL
51 0 : ScVbaScrollBar::setMax( sal_Int32 nVal ) throw (uno::RuntimeException, std::exception)
52 : {
53 0 : m_xProps->setPropertyValue( "ScrollValueMax", uno::makeAny( nVal ) );
54 0 : }
55 :
56 : ::sal_Int32 SAL_CALL
57 0 : ScVbaScrollBar::getMin() throw (uno::RuntimeException, std::exception)
58 : {
59 0 : sal_Int32 nVal = 0;
60 0 : m_xProps->getPropertyValue( "ScrollValueMin" ) >>= nVal;
61 0 : return nVal;
62 : }
63 :
64 : void SAL_CALL
65 0 : ScVbaScrollBar::setMin( sal_Int32 nVal ) throw (uno::RuntimeException, std::exception)
66 : {
67 0 : m_xProps->setPropertyValue( "ScrollValueMin", uno::makeAny( nVal ) );
68 0 : }
69 :
70 : void SAL_CALL
71 0 : ScVbaScrollBar::setLargeChange( ::sal_Int32 _largechange ) throw (uno::RuntimeException, std::exception)
72 : {
73 0 : m_xProps->setPropertyValue( "BlockIncrement", uno::makeAny( _largechange ) );
74 0 : }
75 :
76 : ::sal_Int32 SAL_CALL
77 0 : ScVbaScrollBar::getLargeChange() throw (uno::RuntimeException, std::exception)
78 : {
79 0 : sal_Int32 nVal = 0;
80 0 : m_xProps->getPropertyValue( "BlockIncrement" ) >>= nVal;
81 0 : return nVal;
82 : }
83 :
84 : ::sal_Int32 SAL_CALL
85 0 : ScVbaScrollBar::getSmallChange() throw (uno::RuntimeException, std::exception)
86 : {
87 0 : sal_Int32 nSmallChange = 0;
88 0 : m_xProps->getPropertyValue( "LineIncrement" ) >>= nSmallChange;
89 0 : return nSmallChange;
90 : }
91 :
92 : void SAL_CALL
93 0 : ScVbaScrollBar::setSmallChange( ::sal_Int32 _smallchange ) throw (uno::RuntimeException, std::exception)
94 : {
95 0 : m_xProps->setPropertyValue( "LineIncrement", uno::makeAny( _smallchange ) );
96 0 : }
97 :
98 : OUString
99 0 : ScVbaScrollBar::getServiceImplName()
100 : {
101 0 : return OUString("ScVbaScrollBar" );
102 : }
103 :
104 : uno::Sequence< OUString >
105 0 : ScVbaScrollBar::getServiceNames()
106 : {
107 0 : static uno::Sequence< OUString > aServiceNames;
108 0 : if ( aServiceNames.getLength() == 0 )
109 : {
110 0 : aServiceNames.realloc( 1 );
111 0 : aServiceNames[ 0 ] = "ooo.vba.msforms.Frame";
112 : }
113 0 : return aServiceNames;
114 : }
115 :
116 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|