ooodev.adapter.form.binding.list_entry_listener module

class ooodev.adapter.form.binding.list_entry_listener.ListEntryListener(trigger_args=None, subscriber=None)[source]

Bases: AdapterBase, XListEntryListener

Specifies a listener for changes in a string entry list

Parameters:
  • args (Any) –

  • kwargs (Any) –

Return type:

Any

__init__(trigger_args=None, subscriber=None)[source]

Constructor:

Parameters:
  • trigger_args (GenericArgs, optional) – Args that are passed to events when they are triggered.

  • subscriber (XListEntrySource, XWindow, optional) – An UNO object that implements the XExtendedToolkit or XWindow interface. If passed in then this listener instance is automatically added to it.

Return type:

None

allEntriesChanged(event)[source]

Notifies the listener that all entries of the list have changed.

The listener should retrieve the complete new list by calling the XListEntrySource.getAllListEntries() method of the event source (which is denoted by com.sun.star.lang.EventObject.Source).

Return type:

None

Parameters:

event (com.sun.star.lang.EventObject) –

disposing(event)[source]

Gets called when the broadcaster is about to be disposed.

All listeners and all other objects, which reference the broadcaster should release the reference to the source. No method should be invoked anymore on this object ( including XComponent.removeEventListener() ).

This method is called for every listener registration of derived listener interfaced, not only for registrations at XComponent.

Return type:

None

Parameters:

event (com.sun.star.lang.EventObject) –

entryChanged(event)[source]

Notifies the listener that a single entry in the list has change,

Return type:

None

Parameters:

event (com.sun.star.form.binding.ListEntryEvent) –

entryRangeInserted(event)[source]

Notifies the listener that a range of entries has been inserted into the list,

Return type:

None

Parameters:

event (com.sun.star.form.binding.ListEntryEvent) –

entryRangeRemoved(event)[source]

Notifies the listener that a range of entries has been removed from the list,

Return type:

None

Parameters:

event (com.sun.star.form.binding.ListEntryEvent) –