LCOV - code coverage report
Current view: top level - forms/source/component - Time.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 6 6 100.0 %
Date: 2015-06-13 12:38:46 Functions: 7 7 100.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             : #ifndef INCLUDED_FORMS_SOURCE_COMPONENT_TIME_HXX
      21             : #define INCLUDED_FORMS_SOURCE_COMPONENT_TIME_HXX
      22             : 
      23             : #include "EditBase.hxx"
      24             : #include "limitedformats.hxx"
      25             : 
      26             : 
      27             : namespace frm
      28             : {
      29             : 
      30             : class OTimeModel
      31             :                 :public OEditBaseModel
      32             :                 ,public OLimitedFormats
      33             : {
      34             : private:
      35             :     ::com::sun::star::uno::Any      m_aSaveValue;
      36             :     bool                        m_bDateTimeField;
      37             : 
      38             : protected:
      39             :     virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes() SAL_OVERRIDE;
      40             : 
      41             : public:
      42             :     DECLARE_DEFAULT_LEAF_XTOR( OTimeModel );
      43             : 
      44             :     // css::io::XPersistObject
      45             :     virtual OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      46             : 
      47             :     // ::com::sun::star::beans::XPropertySet
      48             :     virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE;
      49             :     virtual sal_Bool SAL_CALL convertFastPropertyValue(::com::sun::star::uno::Any& rConvertedValue, ::com::sun::star::uno::Any& rOldValue,
      50             :                                           sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
      51             :                                         throw(::com::sun::star::lang::IllegalArgumentException) SAL_OVERRIDE;
      52             :     virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue) throw ( ::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE;
      53             : 
      54             :     // ::com::sun::star::lang::XServiceInfo
      55           8 :     OUString SAL_CALL getImplementationName()
      56             :         throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
      57           8 :     { return OUString("com.sun.star.form.OTimeModel"); }
      58             : 
      59             :     virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
      60             : 
      61             :     // OControlModel's property handling
      62             :     virtual void describeFixedProperties(
      63             :         ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps
      64             :     ) const SAL_OVERRIDE;
      65             : 
      66             :     // prevent method hiding
      67             :     using OBoundControlModel::getFastPropertyValue;
      68             : 
      69             : protected:
      70             :     // OBoundControlModel overridables
      71             :     virtual ::com::sun::star::uno::Any
      72             :                             translateDbColumnToControlValue( ) SAL_OVERRIDE;
      73             :     virtual bool            commitControlValueToDbColumn( bool _bPostReset ) SAL_OVERRIDE;
      74             : 
      75             :     virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
      76             :                             getSupportedBindingTypes() SAL_OVERRIDE;
      77             :     virtual ::com::sun::star::uno::Any
      78             :                             translateControlValueToExternalValue( ) const SAL_OVERRIDE;
      79             :     virtual ::com::sun::star::uno::Any
      80             :                             translateExternalValueToControlValue( const ::com::sun::star::uno::Any& _rExternalValue ) const SAL_OVERRIDE;
      81             : 
      82             :     virtual ::com::sun::star::uno::Any
      83             :                             translateControlValueToValidatableValue( ) const SAL_OVERRIDE;
      84             : 
      85             :     virtual ::com::sun::star::uno::Any
      86             :                             getDefaultForReset() const SAL_OVERRIDE;
      87             :     virtual void            resetNoBroadcast() SAL_OVERRIDE;
      88             : 
      89             :     virtual void            onConnectedDbColumn( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxForm ) SAL_OVERRIDE;
      90             : 
      91             : protected:
      92             :     virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone(  ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      93             : 
      94             : private:
      95             :     /** translates the control value (the VCL-internal integer representation of a date) into
      96             :         a UNO-Date.
      97             :     */
      98             :     void                    impl_translateControlValueToUNOTime(
      99             :                                 ::com::sun::star::uno::Any& _rUNOValue ) const;
     100             : };
     101             : 
     102          14 : class OTimeControl: public OBoundControl
     103             : {
     104             : protected:
     105             :     virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes() SAL_OVERRIDE;
     106             : 
     107             : public:
     108             :     OTimeControl(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& _rxFactory);
     109       44879 :     DECLARE_UNO3_AGG_DEFAULTS(OTimeControl, OBoundControl)
     110             : 
     111             :     // ::com::sun::star::lang::XServiceInfo
     112           1 :     OUString SAL_CALL getImplementationName()
     113             :         throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
     114           1 :     { return OUString("com.sun.star.form.OTimeControl"); }
     115             : 
     116             :     virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
     117             : };
     118             : 
     119             : 
     120             : }   // namespace frm
     121             : 
     122             : 
     123             : #endif // INCLUDED_FORMS_SOURCE_COMPONENT_TIME_HXX
     124             : 
     125             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11