diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 09:53:53 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 09:53:53 +0000 |
commit | 63d051f119f6dc7ca8ac64c8b99aa49f4ea6c1d9 (patch) | |
tree | 333445bcf8905b49f4c29c42faaa50c10f2dd64a /forms/source/component/ImageButton.cxx | |
parent | 213fb36665954a79f3a4a6f031164dd67437f8b6 (diff) |
INTEGRATION: CWS frmvalidation (1.8.36); FILE MERGED
2004/03/11 16:46:17 fs 1.8.36.1: mass checkin
- #i25106# core for validating form controls via external XValidator instances
- moved the services/interfaces related to binding form controls to external
value suppliers into css.form.binding (out of drafts.css.form/component)
Diffstat (limited to 'forms/source/component/ImageButton.cxx')
-rw-r--r-- | forms/source/component/ImageButton.cxx | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/forms/source/component/ImageButton.cxx b/forms/source/component/ImageButton.cxx index 1d2cd74ad900..602d8d6d533b 100644 --- a/forms/source/component/ImageButton.cxx +++ b/forms/source/component/ImageButton.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ImageButton.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2003-10-21 08:58:36 $ + * last change: $Author: rt $ $Date: 2004-04-02 10:53:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -70,6 +70,10 @@ #include <tools/urlobj.hxx> #endif +#ifndef _COMPHELPER_BASIC_IO_HXX_ +#include <comphelper/basicio.hxx> +#endif + #ifndef _COM_SUN_STAR_AWT_MOUSEBUTTON_HPP_ #include <com/sun/star/awt/MouseButton.hpp> #endif @@ -150,16 +154,13 @@ void OImageButtonModel::fillProperties( Sequence< Property >& _rProps, Sequence< Property >& _rAggregateProps ) const { - FRM_BEGIN_PROP_HELPER(8) - DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT); - DECL_PROP1(BUTTONTYPE, FormButtonType, BOUND); - DECL_PROP1(DISPATCHURLINTERNAL, sal_Bool, BOUND); - DECL_PROP1(TARGET_URL, ::rtl::OUString, BOUND); - DECL_PROP1(TARGET_FRAME, ::rtl::OUString, BOUND); - DECL_PROP1(NAME, ::rtl::OUString, BOUND); - DECL_PROP1(TAG, ::rtl::OUString, BOUND); - DECL_PROP1(TABINDEX, sal_Int16, BOUND); - FRM_END_PROP_HELPER(); + BEGIN_DESCRIBE_PROPERTIES( 5, OImageModel ) + DECL_PROP1(BUTTONTYPE, FormButtonType, BOUND); + DECL_PROP1(DISPATCHURLINTERNAL, sal_Bool, BOUND); + DECL_PROP1(TARGET_URL, ::rtl::OUString, BOUND); + DECL_PROP1(TARGET_FRAME, ::rtl::OUString, BOUND); + DECL_PROP1(TABINDEX, sal_Int16, BOUND); + END_DESCRIBE_PROPERTIES(); } //------------------------------------------------------------------------------ |