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 : :
20 : : #include "vbalabel.hxx"
21 : : #include "vbanewfont.hxx"
22 : :
23 : : using namespace com::sun::star;
24 : : using namespace ooo::vba;
25 : :
26 : :
27 : 0 : const static rtl::OUString LABEL( RTL_CONSTASCII_USTRINGPARAM("Label") );
28 : 0 : ScVbaLabel::ScVbaLabel( const css::uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< uno::XInterface >& xControl, const uno::Reference< frame::XModel >& xModel, ov::AbstractGeometryAttributes* pGeomHelper ) : LabelImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
29 : : {
30 : 0 : }
31 : :
32 : : // Attributes
33 : : rtl::OUString SAL_CALL
34 : 0 : ScVbaLabel::getCaption() throw (css::uno::RuntimeException)
35 : : {
36 : 0 : rtl::OUString Label;
37 : 0 : m_xProps->getPropertyValue( LABEL ) >>= Label;
38 : 0 : return Label;
39 : : }
40 : :
41 : : void SAL_CALL
42 : 0 : ScVbaLabel::setCaption( const rtl::OUString& _caption ) throw (::com::sun::star::uno::RuntimeException)
43 : : {
44 : 0 : m_xProps->setPropertyValue( LABEL, uno::makeAny( _caption ) );
45 : 0 : }
46 : : uno::Any SAL_CALL
47 : 0 : ScVbaLabel::getValue() throw (css::uno::RuntimeException)
48 : : {
49 : 0 : return uno::makeAny( getCaption() );
50 : : }
51 : :
52 : : void SAL_CALL
53 : 0 : ScVbaLabel::setValue( const uno::Any& _value ) throw (::com::sun::star::uno::RuntimeException)
54 : : {
55 : 0 : rtl::OUString sCaption;
56 : 0 : _value >>= sCaption;
57 : 0 : setCaption( sCaption );
58 : 0 : }
59 : :
60 : : rtl::OUString SAL_CALL
61 : 0 : ScVbaLabel::getAccelerator() throw (css::uno::RuntimeException)
62 : : {
63 : : //FIXME: seems not support?
64 : 0 : return rtl::OUString();
65 : : }
66 : :
67 : : void SAL_CALL
68 : 0 : ScVbaLabel::setAccelerator( const rtl::OUString& /*_accelerator*/ ) throw (::com::sun::star::uno::RuntimeException)
69 : : {
70 : : //FIXME: seems not support?
71 : 0 : }
72 : :
73 : 0 : uno::Reference< msforms::XNewFont > SAL_CALL ScVbaLabel::getFont() throw (uno::RuntimeException)
74 : : {
75 : 0 : return new VbaNewFont( this, mxContext, m_xProps );
76 : : }
77 : :
78 : 0 : rtl::OUString ScVbaLabel::getServiceImplName()
79 : : {
80 : 0 : return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScVbaLabel"));
81 : : }
82 : :
83 : 0 : sal_Int32 SAL_CALL ScVbaLabel::getBackColor() throw (uno::RuntimeException)
84 : : {
85 : 0 : return ScVbaControl::getBackColor();
86 : : }
87 : :
88 : 0 : void SAL_CALL ScVbaLabel::setBackColor( sal_Int32 nBackColor ) throw (uno::RuntimeException)
89 : : {
90 : 0 : ScVbaControl::setBackColor( nBackColor );
91 : 0 : }
92 : :
93 : 0 : sal_Bool SAL_CALL ScVbaLabel::getAutoSize() throw (uno::RuntimeException)
94 : : {
95 : 0 : return ScVbaControl::getAutoSize();
96 : : }
97 : :
98 : 0 : void SAL_CALL ScVbaLabel::setAutoSize( sal_Bool bAutoSize ) throw (uno::RuntimeException)
99 : : {
100 : 0 : ScVbaControl::setAutoSize( bAutoSize );
101 : 0 : }
102 : :
103 : : uno::Sequence< rtl::OUString >
104 : 0 : ScVbaLabel::getServiceNames()
105 : : {
106 : 0 : static uno::Sequence< rtl::OUString > aServiceNames;
107 : 0 : if ( aServiceNames.getLength() == 0 )
108 : : {
109 : 0 : aServiceNames.realloc( 1 );
110 : 0 : aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.msforms.Label" ) );
111 : : }
112 : 0 : return aServiceNames;
113 : 0 : }
114 : :
115 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|