LCOV - code coverage report
Current view: top level - toolkit/source/controls - spinningprogress.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 35 2.9 %
Date: 2014-11-03 Functions: 2 12 16.7 %
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 <com/sun/star/uno/XComponentContext.hpp>
      21             : #include <rtl/ustrbuf.hxx>
      22             : #include <toolkit/controls/animatedimages.hxx>
      23             : #include <tools/diagnose_ex.h>
      24             : #include <vcl/throbber.hxx>
      25             : 
      26             : using namespace css;
      27             : using namespace css::uno;
      28             : 
      29             : namespace {
      30             : 
      31             : typedef toolkit::AnimatedImagesControlModel SpinningProgressControlModel_Base;
      32             : class SpinningProgressControlModel : public SpinningProgressControlModel_Base
      33             : {
      34             : public:
      35             :     SpinningProgressControlModel( css::uno::Reference< css::uno::XComponentContext > const & i_factory );
      36             :     SpinningProgressControlModel( const SpinningProgressControlModel& i_copySource );
      37             : 
      38             :     virtual UnoControlModel* Clone() const SAL_OVERRIDE;
      39             : 
      40             :     // XPropertySet
      41             :     css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      42             : 
      43             :     // XPersistObject
      44             :     OUString SAL_CALL getServiceName() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      45             : 
      46             :     // XServiceInfo
      47             :     OUString SAL_CALL getImplementationName(  ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      48             :     css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      49             : 
      50             : protected:
      51             :     virtual ~SpinningProgressControlModel();
      52             : };
      53             : 
      54           0 :     SpinningProgressControlModel::SpinningProgressControlModel( Reference< XComponentContext > const & i_factory )
      55           0 :         :SpinningProgressControlModel_Base( i_factory )
      56             :     {
      57             :         // default image sets
      58           0 :         osl_atomic_increment( &m_refCount );
      59             :         {
      60             :             try
      61             :             {
      62             :                 Throbber::ImageSet aImageSets[] =
      63             :                 {
      64             :                     Throbber::IMAGES_16_PX, Throbber::IMAGES_32_PX, Throbber::IMAGES_64_PX
      65           0 :                 };
      66           0 :                 for ( size_t i=0; i < sizeof( aImageSets ) / sizeof( aImageSets[0] ); ++i )
      67             :                 {
      68           0 :                     const ::std::vector< OUString > aDefaultURLs( Throbber::getDefaultImageURLs( aImageSets[i] ) );
      69           0 :                     const Sequence< OUString > aImageURLs( &aDefaultURLs[0], aDefaultURLs.size() );
      70           0 :                     insertImageSet( i, aImageURLs );
      71           0 :                 }
      72             :             }
      73           0 :             catch( const Exception& )
      74             :             {
      75             :                 DBG_UNHANDLED_EXCEPTION();
      76             :             }
      77             :         }
      78           0 :         osl_atomic_decrement( &m_refCount );
      79           0 :     }
      80             : 
      81             : 
      82           0 :     SpinningProgressControlModel::SpinningProgressControlModel( const SpinningProgressControlModel& i_copySource )
      83           0 :         :SpinningProgressControlModel_Base( i_copySource )
      84             :     {
      85           0 :     }
      86             : 
      87             : 
      88           0 :     SpinningProgressControlModel::~SpinningProgressControlModel()
      89             :     {
      90           0 :     }
      91             : 
      92             : 
      93           0 :     UnoControlModel* SpinningProgressControlModel::Clone() const
      94             :     {
      95           0 :         return new SpinningProgressControlModel( *this );
      96             :     }
      97             : 
      98             : 
      99           0 :     Reference< beans::XPropertySetInfo > SAL_CALL SpinningProgressControlModel::getPropertySetInfo(  ) throw(RuntimeException, std::exception)
     100             :     {
     101           0 :         static Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
     102           0 :         return xInfo;
     103             :     }
     104             : 
     105             : 
     106           0 :     OUString SAL_CALL SpinningProgressControlModel::getServiceName() throw(RuntimeException, std::exception)
     107             :     {
     108           0 :         return OUString("com.sun.star.awt.SpinningProgressControlModel");
     109             :     }
     110             : 
     111             : 
     112           0 :     OUString SAL_CALL SpinningProgressControlModel::getImplementationName(  ) throw(RuntimeException, std::exception)
     113             :     {
     114           0 :         return OUString("org.openoffice.comp.toolkit.SpinningProgressControlModel");
     115             :     }
     116             : 
     117             : 
     118           0 :     Sequence< OUString > SAL_CALL SpinningProgressControlModel::getSupportedServiceNames() throw(RuntimeException, std::exception)
     119             :     {
     120           0 :         Sequence< OUString > aServiceNames(3);
     121           0 :         aServiceNames[0] = "com.sun.star.awt.SpinningProgressControlModel";
     122           0 :         aServiceNames[1] = "com.sun.star.awt.AnimatedImagesControlModel";
     123           0 :         aServiceNames[2] = "com.sun.star.awt.UnoControlModel";
     124           0 :         return aServiceNames;
     125             :     }
     126             : 
     127             : }
     128             : 
     129             : extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
     130           0 : org_openoffice_comp_toolkit_SpinningProgressControlModel_get_implementation(
     131             :     css::uno::XComponentContext *context,
     132             :     css::uno::Sequence<css::uno::Any> const &)
     133             : {
     134           0 :     return cppu::acquire(new SpinningProgressControlModel(context));
     135        1227 : }
     136             : 
     137             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10