summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-02-11 01:17:12 +0100
committerEike Rathke <erack@redhat.com>2017-02-11 01:19:37 +0100
commitd3293c7173210e0246d0dc29377f687f41588da2 (patch)
treef44faff71d99dfe6cec402c2abbb9b06bd834e23 /offapi
parentb46ed21a33849d2268406feb875f46bc925a65ec (diff)
Revert "Resolves: tdf#79250 add typed list to form control listbox"
This reverts commit e387b69967aabc44d5da5aaad8d94191437dc57c. It breaks toolkit.subsequentcheck with propertyChangeListener wasn´t called for ´TypedItemList´ Back to the drawing board for the twisted property logic of forms and toolkit uno control models.
Diffstat (limited to 'offapi')
-rw-r--r--offapi/UnoApi_offapi.mk1
-rw-r--r--offapi/com/sun/star/awt/UnoControlComboBoxModel.idl13
-rw-r--r--offapi/com/sun/star/awt/UnoControlListBoxModel.idl10
-rw-r--r--offapi/com/sun/star/form/binding/XListEntryTypedSource.idl47
4 files changed, 0 insertions, 71 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 7c169a47b1eb..a76f42aff91a 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -2524,7 +2524,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/form/binding,\
XListEntryListener \
XListEntrySink \
XListEntrySource \
- XListEntryTypedSource \
XValueBinding \
))
$(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/form/runtime,\
diff --git a/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl b/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl
index 3a359eb393cc..2ee9d691906e 100644
--- a/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl
@@ -192,19 +192,6 @@ published service UnoControlComboBoxModel
#StringItemList property.
*/
[optional] interface XItemList;
-
- /** specifies the list of raw typed (not stringized) items.
-
- <p>This list corresponds with the StringItemList and if given
- has to be of the same length, the elements' positions matching
- those of their string representation in StringItemList.</p>
-
- <p>If a new value is entered via the ComboBox edit then this
- list will be invalidated.</p>
-
- @since LibreOffice 5.4
- */
- [optional, property] sequence<any> TypedItemList;
};
diff --git a/offapi/com/sun/star/awt/UnoControlListBoxModel.idl b/offapi/com/sun/star/awt/UnoControlListBoxModel.idl
index 05a102b0591f..8e577f838407 100644
--- a/offapi/com/sun/star/awt/UnoControlListBoxModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlListBoxModel.idl
@@ -186,16 +186,6 @@ published service UnoControlListBoxModel
@since OOo 3.3
*/
[optional, property, maybevoid] short ItemSeparatorPos;
-
- /** specifies the list of raw typed (not stringized) items.
-
- <p>This list corresponds with the StringItemList and if given
- has to be of the same length, the elements' positions matching
- those of their string representation in StringItemList.</p>
-
- @since LibreOffice 5.4
- */
- [optional, property] sequence<any> TypedItemList;
};
diff --git a/offapi/com/sun/star/form/binding/XListEntryTypedSource.idl b/offapi/com/sun/star/form/binding/XListEntryTypedSource.idl
deleted file mode 100644
index 8f8003deb0f2..000000000000
--- a/offapi/com/sun/star/form/binding/XListEntryTypedSource.idl
+++ /dev/null
@@ -1,47 +0,0 @@
-/* -*- 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/.
- */
-
-#ifndef __com_sun_star_form_binding_XListEntryTypedSource_idl__
-#define __com_sun_star_form_binding_XListEntryTypedSource_idl__
-
-#include <com/sun/star/form/binding/XListEntrySource.idl>
-
-
-module com { module sun { module star { module form { module binding {
-
-
-/** specifies a source of string list entries with corresponding underlying data values
-
- @see XListEntrySource
-
- @since LibreOffice 5.4
-*/
-interface XListEntryTypedSource : com::sun::star::form::binding::XListEntrySource
-{
- /** provides access to the entirety of all list entries, along with
- the corresponding underlying data values.
-
- @param DataValues
- The sequence is used by
- com::sun::star::form::component::ListBox for external
- sources such as spreadsheets to return the resulting
- data value if a listbox entry was selected, e.g. set it
- at the specified bound cell using
- com::sun::star::form::binding::XValueBinding::setValue().
- */
- sequence< string > getAllListEntriesTyped( [out] sequence< any > DataValues );
-
-};
-
-
-}; }; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */