1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_FORMS_SOURCE_COMPONENT_EDITBASE_HXX
21 #define INCLUDED_FORMS_SOURCE_COMPONENT_EDITBASE_HXX
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>
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
40 #define PF_SPECIAL_FLAGS 0xFF00
46 class OEditBaseModel
: public OBoundControlModel
48 sal_Int16 m_nLastReadVersion
;
51 // [properties] for all EditingFields
52 ::com::sun::star::uno::Any m_aDefault
;
53 OUString m_aDefaultText
; // default value
54 bool m_bEmptyIsNull
: 1; // empty string will be interepreted as NULL when committing
55 bool m_bFilterProposal
: 1; // use a list of possible value in filtermode
58 sal_Int16
getLastReadVersion() const { return m_nLastReadVersion
; }
61 DECLARE_DEFAULT_BOUND_XTOR( OEditBaseModel
);
64 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
;
65 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
;
68 virtual void SAL_CALL
getFastPropertyValue(::com::sun::star::uno::Any
& rValue
, sal_Int32 nHandle
) const SAL_OVERRIDE
;
69 virtual sal_Bool SAL_CALL
convertFastPropertyValue(::com::sun::star::uno::Any
& rConvertedValue
, ::com::sun::star::uno::Any
& rOldValue
,
70 sal_Int32 nHandle
, const ::com::sun::star::uno::Any
& rValue
)
71 throw(::com::sun::star::lang::IllegalArgumentException
) SAL_OVERRIDE
;
72 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
;
73 using ::cppu::OPropertySetHelper::getFastPropertyValue
;
76 virtual ::com::sun::star::uno::Any
getPropertyDefaultByHandle( sal_Int32 nHandle
) const SAL_OVERRIDE
;
79 // new properties common to all edit models should be handled with the following two methods
80 void SAL_CALL
readCommonEditProperties(const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XObjectInputStream
>& _rxInStream
);
81 void SAL_CALL
writeCommonEditProperties(const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XObjectOutputStream
>& _rxOutStream
);
82 void defaultCommonEditProperties();
84 virtual sal_uInt16
getPersistenceFlags() const;
85 // derived classes may use this if they want this base class to write additional version flags
86 // (one of the PF_.... constants). After ::read they may ask for that flags with getLastReadVersion
93 #endif // INCLUDED_FORMS_SOURCE_COMPONENT_EDITBASE_HXX
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */