LCOV - code coverage report
Current view: top level - forms/source/component - EditBase.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 1 100.0 %
Date: 2014-11-03 Functions: 1 1 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_EDITBASE_HXX
      21             : #define INCLUDED_FORMS_SOURCE_COMPONENT_EDITBASE_HXX
      22             : 
      23             : #include "FormComponent.hxx"
      24             : #include <com/sun/star/util/XNumberFormatter.hpp>
      25             : #include <com/sun/star/awt/XFocusListener.hpp>
      26             : #include <com/sun/star/awt/XKeyListener.hpp>
      27             : #include <com/sun/star/form/XChangeBroadcaster.hpp>
      28             : #include <com/sun/star/lang/XEventListener.hpp>
      29             : #include <com/sun/star/lang/XServiceInfo.hpp>
      30             : #include <com/sun/star/lang/XComponent.hpp>
      31             : 
      32             : // persistence flags for use with the version id
      33             : #define PF_HANDLE_COMMON_PROPS  0x8000
      34             :     // Derived classes which use their own persistence methods (read/write) and have an own
      35             :     // version handling therein may want to clear this flag in getPersistenceFlags.
      36             :     // If done so, this class will write an version without a call to writeCommonEditProperties.
      37             : #define PF_FAKE_FORMATTED_FIELD 0x4000
      38             :     // .... hmmm .... a fake, as the name suggests. see OFormattedFieldWrapper
      39             : #define PF_RESERVED_2           0x2000
      40             : #define PF_RESERVED_3           0x1000
      41             : #define PF_RESERVED_4           0x0800
      42             : #define PF_RESERVED_5           0x0400
      43             : #define PF_RESERVED_6           0x0200
      44             : #define PF_RESERVED_7           0x0100
      45             : 
      46             : #define PF_SPECIAL_FLAGS        0xFF00
      47             : 
      48             : 
      49             : namespace frm
      50             : {
      51             : 
      52             : class OEditBaseModel :  public OBoundControlModel
      53             : {
      54             :     sal_Int16                   m_nLastReadVersion;
      55             : 
      56             : protected:
      57             : // [properties]         for all EditingFields
      58             :     ::com::sun::star::uno::Any  m_aDefault;
      59             :     OUString                m_aDefaultText;             // default value
      60             :     bool                    m_bEmptyIsNull : 1;         // empty string will be interepreted as NULL when committing
      61             :     bool                    m_bFilterProposal : 1;      // use a list of possible value in filtermode
      62             : // [properties]
      63             : 
      64           2 :     sal_Int16   getLastReadVersion() const { return m_nLastReadVersion; }
      65             : 
      66             : public:
      67             :     DECLARE_DEFAULT_BOUND_XTOR( OEditBaseModel );
      68             : 
      69             :     // XPersistObject
      70             :     virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      71             :     virtual void SAL_CALL read(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      72             : 
      73             :     // XPropertySet
      74             :     virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE;
      75             :     virtual sal_Bool SAL_CALL convertFastPropertyValue(::com::sun::star::uno::Any& rConvertedValue, ::com::sun::star::uno::Any& rOldValue,
      76             :                                           sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
      77             :                                         throw(::com::sun::star::lang::IllegalArgumentException) SAL_OVERRIDE;
      78             :     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;
      79             :     using ::cppu::OPropertySetHelper::getFastPropertyValue;
      80             : 
      81             :     // XPropertyState
      82             :     virtual ::com::sun::star::uno::Any getPropertyDefaultByHandle( sal_Int32 nHandle ) const SAL_OVERRIDE;
      83             : 
      84             : protected:
      85             :     // new properties common to all edit models should be handled with the following two methods
      86             :     void SAL_CALL readCommonEditProperties(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream);
      87             :     void SAL_CALL writeCommonEditProperties(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream);
      88             :     void defaultCommonEditProperties();
      89             : 
      90             :     virtual sal_uInt16 getPersistenceFlags() const;
      91             :     // derived classes may use this if they want this base class to write additional version flags
      92             :     // (one of the PF_.... constants). After ::read they may ask for that flags with getLastReadVersion
      93             : };
      94             : 
      95             : 
      96             : }
      97             : 
      98             : 
      99             : #endif // INCLUDED_FORMS_SOURCE_COMPONENT_EDITBASE_HXX
     100             : 
     101             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10