from __future__ import annotations
import contextlib
from typing import Any, TYPE_CHECKING
from ooodev.events.args.generic_args import GenericArgs
from ooodev.events.args.listener_event_args import ListenerEventArgs
from ooodev.utils import gen_util as gUtil
from ooodev.adapter.awt.action_listener import ActionListener
if TYPE_CHECKING:
from ooodev.utils.type_var import EventArgsCallbackT, ListenerEventCallbackT
[docs]class ActionEvents:
"""
Class for managing Action Events.
This class is usually inherited by control classes that implement ``com.sun.star.awt.XActionListener``.
"""
[docs] def __init__(
self,
trigger_args: GenericArgs | None = None,
cb: ListenerEventCallbackT | None = None,
listener: ActionListener | None = None,
subscriber: Any = None,
) -> None:
"""
Constructor
Args:
trigger_args (GenericArgs, optional): Args that are passed to events when they are triggered.
This only applies if the listener is not passed.
cb (ListenerEventCallbackT | None, optional): Callback that is invoked when an event is added or removed.
listener (ActionListener | None, optional): Listener that is used to manage events.
subscriber (Any, optional): An UNO object that has a ``addActionListener()`` Method.
If passed in then this instance listener is automatically added to it.
Valid objects are: Listbox, ComboBox, Button, HyperLink, FixedHyperlink,
ImageButton or any other UNO object that has ``addActionListener()`` method.
"""
self.__callback = cb
if listener:
self.__listener = listener
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.__listener)
else:
self.__listener = ActionListener(trigger_args=trigger_args, subscriber=subscriber)
self.__name = gUtil.Util.generate_random_string(10)
# region Manage Events
[docs] def add_event_action_events_disposing(self, cb: EventArgsCallbackT) -> None:
"""
Adds a listener for an event.
Event is invoked when the broadcaster is about to be disposed.
The callback ``EventArgs.event_data`` will contain a UNO ``com.sun.star.lang.EventObject`` struct.
"""
if self.__callback:
args = ListenerEventArgs(source=self.__name, trigger_name="disposing")
self.__callback(self, args)
if args.remove_callback:
self.__callback = None
self.__listener.on("disposing", cb)
[docs] def remove_event_action_events_disposing(self, cb: EventArgsCallbackT) -> None:
"""
Removes a listener for an event
"""
if self.__callback:
args = ListenerEventArgs(source=self.__name, trigger_name="disposing", is_add=False)
self.__callback(self, args)
if args.remove_callback:
self.__callback = None
self.__listener.off("disposing", cb)
@property
def events_listener_action(self) -> ActionListener:
"""
Returns listener
"""
return self.__listener
# endregion Manage Events
[docs]def on_lazy_cb(source: Any, event: ListenerEventArgs) -> None:
"""
Callback that is invoked when an event is added or removed.
This method is generally used to add the listener to the component in a lazy manner.
This means this callback will only be called once in the lifetime of the component.
Args:
source (Any): Expected to be an instance of ActionEvents that is a partial class of a component based class.
event (ListenerEventArgs): Event arguments.
Returns:
None:
Warning:
This method is intended for internal use only.
"""
# will only ever fire once
if not isinstance(source, ActionEvents):
return
if not hasattr(source, "component"):
return
with contextlib.suppress(AttributeError):
source.component.addActionListener(source.events_listener_action) # type: ignore
event.remove_callback = True