Branch data 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 : : #include "vbaspinbutton.hxx"
20 : : #include <vector>
21 : :
22 : : using namespace com::sun::star;
23 : : using namespace ooo::vba;
24 : :
25 : :
26 : 0 : const static rtl::OUString SPINVALUE( RTL_CONSTASCII_USTRINGPARAM("SpinValue") );
27 : 0 : const static rtl::OUString SPINMAX( RTL_CONSTASCII_USTRINGPARAM("SpinValueMax") );
28 : 0 : const static rtl::OUString SPINMIN( RTL_CONSTASCII_USTRINGPARAM("SpinValueMin") );
29 : :
30 : 0 : ScVbaSpinButton::ScVbaSpinButton( 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 ) : SpinButtonImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
31 : : {
32 : 0 : }
33 : :
34 : : // Attributes
35 : : uno::Any SAL_CALL
36 : 0 : ScVbaSpinButton::getValue() throw (css::uno::RuntimeException)
37 : : {
38 : 0 : return m_xProps->getPropertyValue( SPINVALUE );
39 : : }
40 : :
41 : : void SAL_CALL
42 : 0 : ScVbaSpinButton::setValue( const uno::Any& _value ) throw (::com::sun::star::uno::RuntimeException)
43 : : {
44 : 0 : m_xProps->setPropertyValue( SPINVALUE, _value );
45 : 0 : }
46 : :
47 : : ::sal_Int32 SAL_CALL
48 : 0 : ScVbaSpinButton::getMax() throw (uno::RuntimeException)
49 : : {
50 : 0 : sal_Int32 nMax = 0;
51 : 0 : m_xProps->getPropertyValue( SPINMAX ) >>= nMax;
52 : 0 : return nMax;
53 : : }
54 : :
55 : : void SAL_CALL
56 : 0 : ScVbaSpinButton::setMax( sal_Int32 nVal ) throw (uno::RuntimeException)
57 : : {
58 : 0 : m_xProps->setPropertyValue( SPINMAX, uno::makeAny( nVal ) );
59 : 0 : }
60 : :
61 : : ::sal_Int32 SAL_CALL
62 : 0 : ScVbaSpinButton::getMin() throw (uno::RuntimeException)
63 : : {
64 : 0 : sal_Int32 nVal = 0;
65 : 0 : m_xProps->getPropertyValue( SPINMIN ) >>= nVal;
66 : 0 : return nVal;
67 : : }
68 : :
69 : : void SAL_CALL
70 : 0 : ScVbaSpinButton::setMin( sal_Int32 nVal ) throw (uno::RuntimeException)
71 : : {
72 : 0 : m_xProps->setPropertyValue( SPINMIN, uno::makeAny( nVal ) );
73 : 0 : }
74 : :
75 : : rtl::OUString
76 : 0 : ScVbaSpinButton::getServiceImplName()
77 : : {
78 : 0 : return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScVbaSpinButton"));
79 : : }
80 : :
81 : : uno::Sequence< rtl::OUString >
82 : 0 : ScVbaSpinButton::getServiceNames()
83 : : {
84 : 0 : static uno::Sequence< rtl::OUString > aServiceNames;
85 : 0 : if ( aServiceNames.getLength() == 0 )
86 : : {
87 : 0 : aServiceNames.realloc( 1 );
88 : 0 : aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.msforms.Frame" ) );
89 : : }
90 : 0 : return aServiceNames;
91 : 0 : }
92 : :
93 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|