LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/vbahelper/source/msforms - vbaradiobutton.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 28 45 62.2 %
Date: 2013-07-09 Functions: 5 10 50.0 %
Legend: Lines: hit not hit

          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 "vbaradiobutton.hxx"
      21             : #include "vbanewfont.hxx"
      22             : 
      23             : using namespace com::sun::star;
      24             : using namespace ooo::vba;
      25             : 
      26             : 
      27           1 : const static OUString LABEL( "Label" );
      28           1 : const static OUString STATE( "State" );
      29          16 : ScVbaRadioButton::ScVbaRadioButton( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< uno::XInterface >& xControl, const uno::Reference< frame::XModel >& xModel, AbstractGeometryAttributes* pGeomHelper ) : RadioButtonImpl_BASE( xParent, xContext, xControl, xModel, pGeomHelper )
      30             : {
      31          16 : }
      32             : 
      33             : // Attributes
      34             : OUString SAL_CALL
      35           0 : ScVbaRadioButton::getCaption() throw (css::uno::RuntimeException)
      36             : {
      37           0 :     OUString Label;
      38           0 :     m_xProps->getPropertyValue( LABEL ) >>= Label;
      39           0 :     return Label;
      40             : }
      41             : 
      42             : void SAL_CALL
      43           0 : ScVbaRadioButton::setCaption( const OUString& _caption ) throw (::com::sun::star::uno::RuntimeException)
      44             : {
      45           0 :     m_xProps->setPropertyValue( LABEL, uno::makeAny( _caption ) );
      46           0 : }
      47             : 
      48             : uno::Any SAL_CALL
      49          16 : ScVbaRadioButton::getValue() throw (css::uno::RuntimeException)
      50             : {
      51          16 :     sal_Int16 nValue = -1;
      52          16 :     m_xProps->getPropertyValue( STATE ) >>= nValue;
      53          16 :     if( nValue != 0 )
      54           6 :         nValue = -1;
      55             : //    return uno::makeAny( nValue );
      56             : // I must be missing something MSO says value should be -1 if selected, 0 if not
      57             : // selected
      58          16 :     return uno::makeAny( ( nValue == -1 ) ? sal_True : sal_False );
      59             : 
      60             : }
      61             : 
      62             : void SAL_CALL
      63           8 : ScVbaRadioButton::setValue( const uno::Any& _value ) throw (uno::RuntimeException)
      64             : {
      65           8 :     sal_Int16 nValue = 0;
      66           8 :     sal_Int16 nOldValue = 0;
      67           8 :     m_xProps->getPropertyValue( STATE ) >>= nOldValue;
      68             : 
      69           8 :     if( !( _value >>= nValue ) )
      70             :     {
      71           4 :         sal_Bool bValue = sal_False;
      72           4 :         _value >>= bValue;
      73           4 :         if ( bValue )
      74           2 :             nValue = -1;
      75             :     }
      76             : 
      77           8 :     if( nValue == -1)
      78           4 :         nValue = 1;
      79           8 :     m_xProps->setPropertyValue( STATE, uno::makeAny( nValue ) );
      80           8 :     if ( nValue != nOldValue )
      81             :     {
      82           6 :         fireChangeEvent();
      83             :         // In Excel, only when the radio button is checked, the click event is fired.
      84           6 :         if ( nValue != 0 )
      85             :         {
      86           4 :             fireClickEvent();
      87             :         }
      88             :     }
      89           8 : }
      90             : 
      91           0 : uno::Reference< msforms::XNewFont > SAL_CALL ScVbaRadioButton::getFont() throw (uno::RuntimeException)
      92             : {
      93           0 :     return new VbaNewFont( this, mxContext, m_xProps );
      94             : }
      95             : 
      96             : OUString
      97           0 : ScVbaRadioButton::getServiceImplName()
      98             : {
      99           0 :     return OUString( "ScVbaRadioButton" );
     100             : }
     101             : 
     102             : uno::Sequence< OUString >
     103           0 : ScVbaRadioButton::getServiceNames()
     104             : {
     105           0 :     static uno::Sequence< OUString > aServiceNames;
     106           0 :     if ( aServiceNames.getLength() == 0 )
     107             :     {
     108           0 :         aServiceNames.realloc( 1 );
     109           0 :         aServiceNames[ 0 ] = "ooo.vba.msforms.RadioButton";
     110             :     }
     111           0 :     return aServiceNames;
     112           3 : }
     113             : 
     114             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10