tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / offapi / com / sun / star / xforms / Binding.idl
blobd31304e2807bb86ae28907d96eca2e15d8d3e18a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
21 module com { module sun { module star { module xforms {
23 interface XSubmission;
26 /** represent a binding to one or more nodes in the DOM tree of an XModel.
28 service Binding
30 /** allows the binding to act as value supplier for a form component
32 @see com::sun::star::form::binding::BindableControlModel
34 service com::sun::star::form::binding::ValueBinding;
36 /** allows external instances to observe the value represented by the binding
38 <p>This interface is an optional part of the
39 com::sun::star::form::binding::ValueBinding service, but loses
40 its optionality here.</p>
42 interface com::sun::star::util::XModifyBroadcaster;
44 /** allows the binding to act as source for list entries of form controls
46 <p>If a binding is associated with more than one node in a DOM tree, it
47 does not represent a single value, but a list of values. Using this interface,
48 this list can be displayed in form control list and combo boxes.</p>
50 service com::sun::star::form::binding::ListEntrySource;
52 /** allows the binding to act as validator for a form component
54 @see com::sun::star::form::binding::ValidatableControlModel
56 interface com::sun::star::form::validation::XValidator;
58 /** among other properties, there is this one
60 <p>It is unclear to me whether this is an implementation detail
61 or a supported interface.</p>
62 <p>The value supports the service
63 com::sun::star::xml::NamespaceContainer</p>
65 @see com::sun::star::xml::NamespaceContainer
67 [optional, property] com::sun::star::container::XNameContainer
68 BindingNamespaces;
72 }; }; }; };
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */