/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_form_binding_BindableDataAwareControlModel_idl__ #define __com_sun_star_form_binding_BindableDataAwareControlModel_idl__ #ifndef __com_sun_star_form_DataAwareControlModel_idl__ #include #endif #ifndef __com_sun_star_form_binding_BindableControlModel_idl__ #include #endif //============================================================================= module com { module sun { module star { module form { module binding { //============================================================================= /** is a specialization of the DataAwareControlModel which additionally supports binding to external value suppliers.

Control models usually have some kind of value property, which reflects the very current content of the controls associated with this model. For instance, for an TextField, this would be the UnoControlEditModel::Text property of the base service. Similarily, a CheckBox has a property UnoControlCheckBoxModel::State, which reflects the current check state.

Usual DataAwareControlModels can be bound to a column of a DataForm, and exchange their content with such a column.
In particular, when the DataForm is moved to a different record, then the bound control model is updated with the value of it's column in this particular row.
On the other hand, when any change in the control model (e.g. resulting from a user entering data in a control associated with the control model) is committed (XBoundComponent::commit), then the actual data of the control model is written into the associated DataForm column.

BindableDataAwareControlModel's additionally support an alternative value binding, which forces them to exchange their value with another foreign instance. In some sense, they are an abstraction of the data aware control models, which only support a specialized, hard-coded value binding (namely the binding to a DataForm column).

For this, they provide the XBindableValue interface which allows to set an external component to exchange the value with.

The following rules apply when a data aware control model is bound to an external value binding:

When a BindableDataAwareControlModel is being bound to an external value, using XBindableValue::setValueBinding, then the control model (it's value property, respectively) and the external value are initially synchronized by setting the external value (XValueBinding::getValue) at the control model.

*/ service BindableDataAwareControlModel { /** specifies the functionality for binding the control model to a column of an SQL DataForm. */ service com::sun::star::form::DataAwareControlModel; /** specifies the functionality for alternatively binding the control model to an external value. */ service BindableControlModel; }; //============================================================================= }; }; }; }; }; #endif