Source code for ooodev.adapter.drawing.shape_grouper_partial

from __future__ import annotations
from typing import Any, TYPE_CHECKING

from com.sun.star.drawing import XShapeGrouper
from com.sun.star.drawing import XShapeGroup
from com.sun.star.drawing import XShapes

from ooodev.exceptions import ex as mEx
from ooodev.loader import lo as mLo

if TYPE_CHECKING:
    from ooodev.utils.type_var import UnoInterface


[docs]class ShapeGrouperPartial: """ Partial class for XShapeGrouper interface. """ # pylint: disable=unused-argument
[docs] def __init__(self, component: XShapeGrouper, interface: UnoInterface | None = XShapeGrouper) -> None: """ Constructor Args: component (XShapeGrouper): UNO Component that implements ``com.sun.star.drawing.XShapeGrouper`` interface. interface (UnoInterface, optional): The interface to be validated. Defaults to ``XShapeGrouper``. """ def validate(comp: Any, obj_type: Any) -> None: if obj_type is None: return if not mLo.Lo.is_uno_interfaces(comp, obj_type): raise mEx.MissingInterfaceError(obj_type) validate(component, interface) self.__component = component
# region XShapeGrouper
[docs] def group(self, shapes: XShapes) -> XShapeGroup: """ Groups the given shapes. Args: shapes (XShapes): The shapes to group. Returns: XShapeGroup: The group shape. """ return self.__component.group(shapes)
[docs] def ungroup(self, shape: XShapeGroup) -> None: """ Un-groups the given shape. Args: shape (XShapeGroup): The shape to ungroup. Returns: None: """ self.__component.ungroup(shape)
# endregion XShapeGrouper