from __future__ import annotations
from typing import Any, TYPE_CHECKING
from ooodev.format.inner.partial.default_factor_styler import DefaultFactoryStyler
from ooodev.format.inner.style_factory import chart2_position_size_position_factory
from ooodev.events.partial.events_partial import EventsPartial
if TYPE_CHECKING:
from ooodev.loader.inst.lo_inst import LoInst
from ooodev.format.proto.chart2.position_size.position_t import PositionT
from ooodev.units.unit_obj import UnitT
else:
PositionT = Any
UnitT = Any
[docs]class Chart2PositionPartial:
"""
Partial class for Chart Position.
"""
[docs] def __init__(self, factory_name: str, component: Any, lo_inst: LoInst | None = None) -> None:
self.__styler = DefaultFactoryStyler(
factory_name=factory_name,
component=component,
before_event="before_style_position",
after_event="after_style_position",
lo_inst=lo_inst,
)
if isinstance(self, EventsPartial):
self.__styler.add_event_observers(self.event_observer)
[docs] def style_position(self, x: float | UnitT, y: float | UnitT) -> PositionT | None:
"""
Style Area Color.
Args:
x (float, UnitT): Specifies the x-coordinate of the position of the shape (in ``mm`` units) or :ref:`proto_unit_obj`.
y (float, UnitT): Specifies the y-coordinate of the position of the shape (in ``mm`` units) or :ref:`proto_unit_obj`.
Raises:
CancelEventError: If the event ``before_style_position`` is cancelled and not handled.
Returns:
PositionT | None: Position instance or ``None`` if cancelled.
"""
return self.__styler.style(factory=chart2_position_size_position_factory, pos_x=x, pos_y=y)
[docs] def style_position_get(self) -> PositionT | None:
"""
Gets the Position Style.
Raises:
CancelEventError: If the event ``before_style_position_get`` is cancelled and not handled.
Returns:
PositionT | None: Position style or ``None`` if cancelled.
"""
return self.__styler.style_get(factory=chart2_position_size_position_factory)