Source code for ooodev.adapter.form.update_listener

from __future__ import annotations
from typing import TYPE_CHECKING

try:
    # python 3.12+
    from typing import override  # noqa # type: ignore
except ImportError:
    from typing_extensions import override  # noqa # type: ignore

from com.sun.star.form import XUpdateListener

from ooodev.events.args.generic_args import GenericArgs
from ooodev.adapter.adapter_base import AdapterBase
from ooodev.events.args.cancel_event_args import CancelEventArgs


if TYPE_CHECKING:
    from com.sun.star.lang import EventObject
    from com.sun.star.form import XUpdateBroadcaster


[docs]class UpdateListener(AdapterBase, XUpdateListener): """ Used to listen on objects which allow updating their data. In addition to just get notified when a data update happened, the listener has a chance to veto updates before they happen. See Also: `API XUpdateListener <https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1form_1_1XUpdateListener.html>`_ """
[docs] def __init__(self, trigger_args: GenericArgs | None = None, subscriber: XUpdateBroadcaster | None = None) -> None: """ Constructor Args: trigger_args (GenericArgs, Optional): Args that are passed to events when they are triggered. subscriber (XUpdateBroadcaster, optional): An UNO object that implements the ``XUpdateBroadcaster`` interface. If passed in then this listener instance is automatically added to it. """ super().__init__(trigger_args=trigger_args) if subscriber: subscriber.addUpdateListener(self)
[docs] @override def approveUpdate(self, aEvent: EventObject) -> bool: """ Event is invoked to check the current data. If event is canceled then the update will be canceled. Args: event (EventObject): Event data for the event. Returns: bool: ``True`` if the update should be performed, ``False`` otherwise. Note: When ``approveUpdate`` event is invoked it will contain a :py:class:`~ooodev.events.args.cancel_event_args.CancelEventArgs` instance as the trigger event. When the event is triggered the ``CancelEventArgs.cancel`` can be set to ``True`` to cancel the update. Also if canceled the ``CancelEventArgs.handled`` can be set to ``True`` to indicate that the update should be performed. The ``CancelEventArgs.event_data`` will contain the original ``com.sun.star.lang.EventObject`` that triggered the update. """ cancel_args = CancelEventArgs(self.__class__.__qualname__) cancel_args.event_data = aEvent self._trigger_direct_event("approveUpdate", cancel_args) if cancel_args.cancel: if CancelEventArgs.handled: # if the cancel event was handled then we return True to indicate that the update should be performed return True return False return True
[docs] @override def updated(self, aEvent: EventObject) -> None: """ Event is invoked when an object has finished processing the updates and the data has been successfully written. Args: event (EventObject): Event data for the event. Returns: None: """ self._trigger_event("updated", aEvent)
[docs] @override def disposing(self, Source: EventObject) -> None: """ 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``. Args: event (EventObject): Event data for the event. Returns: None: """ # from com.sun.star.lang.XEventListener self._trigger_event("disposing", Source)