/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #ifndef __com_sun_star_form_binding_BindableDataAwareControlModel_idl__ #define __com_sun_star_form_binding_BindableDataAwareControlModel_idl__ #include #include module com { module sun { module star { module form { module binding { /** is a specialization of the com::sun::star::form::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 com::sun::star::form::component::TextField, this would be the com::sun::star::awt::UnoControlEditModel::Text property of the base service. Similarly, a com::sun::star::form::component::CheckBox has a property com::sun::star::awt::UnoControlCheckBoxModel::State, which reflects the current check state.

Usual com::sun::star::form::DataAwareControlModels can be bound to a column of a com::sun::star::form::component::DataForm, and exchange their content with such a column.
In particular, when the com::sun::star::form::component::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 (com::sun::star::form::XBoundComponent::commit()), then the actual data of the control model is written into the associated com::sun::star::form::component::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 com::sun::star::form::component::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 (its 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 com::sun::star::form::component::DataForm. */ service com::sun::star::form::DataAwareControlModel; /** specifies the functionality for alternatively binding the control model to an external value. */ service BindableControlModel; }; }; }; }; }; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */