update dev300-m58
[ooovba.git] / forms / source / component / Hidden.hxx
blobf8a3f5a3d3bebd93c6d0c452a72ea5fa368b1614
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: Hidden.hxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _FORMS_HIDDEN_HXX_
32 #define _FORMS_HIDDEN_HXX_
34 #include "FormComponent.hxx"
36 //.........................................................................
37 namespace frm
40 //==================================================================
41 // OHiddenModel
42 //==================================================================
43 class OHiddenModel
44 :public OControlModel
46 ::rtl::OUString m_sHiddenValue;
48 public:
49 DECLARE_DEFAULT_LEAF_XTOR( OHiddenModel );
51 // OPropertySetHelper
52 virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle) const;
53 virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
54 throw (::com::sun::star::uno::Exception);
55 virtual sal_Bool SAL_CALL convertFastPropertyValue(
56 ::com::sun::star::uno::Any& _rConvertedValue, ::com::sun::star::uno::Any& _rOldValue, sal_Int32 _nHandle, const ::com::sun::star::uno::Any& _rValue )
57 throw (::com::sun::star::lang::IllegalArgumentException);
59 // XServiceInfo
60 IMPLEMENTATION_NAME(OHiddenModel);
61 virtual StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
63 // XPersistObject
64 virtual ::rtl::OUString SAL_CALL getServiceName() throw(::com::sun::star::uno::RuntimeException);
65 virtual void SAL_CALL
66 write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream) throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
67 virtual void SAL_CALL
68 read(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream) throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
70 // OControlModel's property handling
71 virtual void describeFixedProperties(
72 ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps
73 ) const;
75 // prevent method hiding
76 using OControlModel::getFastPropertyValue;
78 protected:
79 DECLARE_XCLONEABLE( );
82 #endif // _FORMS_HIDDEN_HXX_
84 //.........................................................................
86 //.........................................................................