From 89950846b1c21aff95310122e5bb3d9408e46dc1 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Tue, 16 Nov 2004 09:09:43 +0000 Subject: INTEGRATION: CWS eforms2 (1.21.20); FILE MERGED 2004/10/01 18:04:46 dvo 1.21.20.7: #i34802# load/save binding fir lists as form:xforms-list-source 2004/08/25 17:48:13 dvo 1.21.20.6: #i31958# load/save xforms:submission attribute on buttons 2004/08/16 19:57:18 dvo 1.21.20.5: RESYNC: (1.24-1.25); FILE MERGED 2004/07/27 12:11:26 fs 1.21.20.4: RESYNC: (1.22-1.24); FILE MERGED 2004/06/25 09:56:04 dvo 1.21.20.3: RESYNC: (1.21-1.22); FILE MERGED 2004/03/18 17:38:16 dvo 1.21.20.2: #114856# continue XForms implementation (also remove define DVO_XFORMS) 2004/01/28 14:51:35 dvo 1.21.20.1: #114856# load xforms:bind attribute for form controls (use DVO_XFORMS define) --- xmloff/source/forms/elementimport.hxx | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/xmloff/source/forms/elementimport.hxx b/xmloff/source/forms/elementimport.hxx index 6b92f7bb1daf..caf72932bbf3 100644 --- a/xmloff/source/forms/elementimport.hxx +++ b/xmloff/source/forms/elementimport.hxx @@ -2,9 +2,9 @@ * * $RCSfile: elementimport.hxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: hr $ $Date: 2004-11-09 12:16:49 $ + * last change: $Author: obo $ $Date: 2004-11-16 10:09:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -248,6 +248,15 @@ namespace xmloff */ ::rtl::OUString m_sBoundCellAddress; + /** name of a value binding (xforms:bind attribute) */ + ::rtl::OUString m_sBindingID; + + /** name of a list binding (form:xforms-list-source attribute) */ + ::rtl::OUString m_sListBindingID; + + /** name of a submission (xforms:submission attribute) */ + ::rtl::OUString m_sSubmissionID; + protected: // for use by derived classes only OControlImport( @@ -296,6 +305,15 @@ namespace xmloff */ virtual void doRegisterCellValueBinding( const ::rtl::OUString& _rBoundCellAddress ); + /** register the given XForms binding */ + virtual void doRegisterXFormsValueBinding( const ::rtl::OUString& ); + + /** register the given XForms list binding */ + virtual void doRegisterXFormsListBinding( const ::rtl::OUString& ); + + /** register the given XForms submission */ + virtual void doRegisterXFormsSubmission( const ::rtl::OUString& ); + protected: //added by BerryJia for fixing bug102407 2002-11-5 // OElementImport overridables -- cgit