Source code for ooodev.adapter.awt.action_listener

from __future__ import annotations
from typing import Any, TYPE_CHECKING
import contextlib

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.awt import XActionListener
from ooodev.events.args.generic_args import GenericArgs
from ooodev.adapter.adapter_base import AdapterBase


if TYPE_CHECKING:
    from com.sun.star.lang import EventObject
    from com.sun.star.awt import ActionEvent


[docs]class ActionListener(AdapterBase, XActionListener): """ Makes it possible to receive action events. See Also: `API XActionListener <https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XActionListener.html>`_ """
[docs] def __init__(self, trigger_args: GenericArgs | None = None, subscriber: Any = None) -> None: """ Constructor: Arguments: trigger_args (GenericArgs, optional): Args that are passed to events when they are triggered. subscriber (Any, optional): An UNO object that has a ``addActionListener()`` Method. If passed in then this listener instance is automatically added to it. Valid objects are: Listbox, ComboBox, Button, HyperLink, FixedHyperlink, ImageButton or any other UNO object that has ``addActionListener()`` method. """ super().__init__(trigger_args=trigger_args) if subscriber: # several object such as Listbox, Combobox, Button, etc. can add an ActionListener. # There is no common interface for this, so we have to try them all. with contextlib.suppress(AttributeError): subscriber.addActionListener(self)
# region XActionListener
[docs] @override def actionPerformed(self, rEvent: ActionEvent) -> None: """ is invoked when an action is performed. """ self._trigger_event("actionPerformed", rEvent)
[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``. """ # from com.sun.star.lang.XEventListener self._trigger_event("disposing", Source)
# endregion XActionListener