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_DATE_HXX
21 : #define INCLUDED_FORMS_SOURCE_COMPONENT_DATE_HXX
22 :
23 : #include "EditBase.hxx"
24 : #include "limitedformats.hxx"
25 :
26 :
27 : namespace frm
28 : {
29 :
30 : class ODateModel
31 : :public OEditBaseModel
32 : ,public OLimitedFormats
33 : {
34 : ::com::sun::star::uno::Any m_aSaveValue;
35 : bool m_bDateTimeField;
36 :
37 : protected:
38 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes() SAL_OVERRIDE;
39 :
40 : public:
41 : DECLARE_DEFAULT_LEAF_XTOR( ODateModel );
42 :
43 : // XPersistObject
44 : virtual OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
45 :
46 : // ::com::sun::star::beans::XPropertySet
47 : virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE;
48 : virtual sal_Bool SAL_CALL convertFastPropertyValue(::com::sun::star::uno::Any& rConvertedValue, ::com::sun::star::uno::Any& rOldValue,
49 : sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
50 : throw(::com::sun::star::lang::IllegalArgumentException) SAL_OVERRIDE;
51 : 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;
52 :
53 : // XServiceInfo
54 14 : IMPLEMENTATION_NAME(ODateModel);
55 : virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
56 :
57 : // XPropertySet
58 : using OEditBaseModel::getFastPropertyValue;
59 :
60 : // OControlModel's property handling
61 : virtual void describeFixedProperties(
62 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps
63 : ) const SAL_OVERRIDE;
64 :
65 : protected:
66 : // OBoundControlModel overridables
67 : virtual ::com::sun::star::uno::Any
68 : translateDbColumnToControlValue( ) SAL_OVERRIDE;
69 : virtual bool commitControlValueToDbColumn( bool _bPostReset ) SAL_OVERRIDE;
70 :
71 : virtual ::com::sun::star::uno::Any
72 : translateControlValueToExternalValue( ) const SAL_OVERRIDE;
73 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
74 : getSupportedBindingTypes() SAL_OVERRIDE;
75 : virtual ::com::sun::star::uno::Any
76 : translateExternalValueToControlValue( const ::com::sun::star::uno::Any& _rExternalValue ) const SAL_OVERRIDE;
77 :
78 : virtual ::com::sun::star::uno::Any
79 : translateControlValueToValidatableValue( ) const SAL_OVERRIDE;
80 :
81 : virtual ::com::sun::star::uno::Any
82 : getDefaultForReset() const SAL_OVERRIDE;
83 :
84 : virtual void resetNoBroadcast() SAL_OVERRIDE;
85 :
86 : virtual void onConnectedDbColumn( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxForm ) SAL_OVERRIDE;
87 :
88 : protected:
89 : virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
90 :
91 : private:
92 : /** translates the control value (the VCL-internal integer representation of a date) into
93 : a UNO-Date.
94 : */
95 : void impl_translateControlValueToUNODate(
96 : ::com::sun::star::uno::Any& _rUNOValue ) const;
97 : };
98 :
99 36 : class ODateControl: public OBoundControl
100 : {
101 : protected:
102 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes() SAL_OVERRIDE;
103 :
104 : public:
105 : ODateControl(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& _rxFactory);
106 58413 : DECLARE_UNO3_AGG_DEFAULTS(ODateControl, OBoundControl)
107 :
108 : // ::com::sun::star::lang::XServiceInfo
109 0 : IMPLEMENTATION_NAME(ODateControl);
110 : virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
111 : };
112 :
113 :
114 : } // namespace frm
115 :
116 :
117 : #endif // INCLUDED_FORMS_SOURCE_COMPONENT_DATE_HXX
118 :
119 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|