from __future__ import annotations
from typing import TYPE_CHECKING, Generic
try:
# python 3.12+
from typing import override # noqa # type: ignore
except ImportError:
from typing_extensions import override # noqa # type: ignore
from ooodev.adapter.beans.property_change_implement import PropertyChangeImplement
from ooodev.adapter.beans.vetoable_change_implement import VetoableChangeImplement
from ooodev.adapter.drawing.graphic_object_shape_comp import GraphicObjectShapeComp
from ooodev.adapter.drawing.shape_partial_props import ShapePartialProps
from ooodev.format.inner.style_partial import StylePartial
from ooodev.utils.partial.prop_partial import PropPartial
from ooodev.utils.partial.qi_partial import QiPartial
from ooodev.draw.partial.draw_shape_partial import DrawShapePartial
from ooodev.draw.shapes.shape_base import ShapeBase
from ooodev.draw.shapes.shape_base import _T
if TYPE_CHECKING:
from com.sun.star.drawing import XShape
from ooodev.loader.inst.lo_inst import LoInst
[docs]class GraphicObjectShape( # type: ignore
ShapeBase,
GraphicObjectShapeComp,
Generic[_T],
ShapePartialProps,
PropertyChangeImplement,
VetoableChangeImplement,
DrawShapePartial,
QiPartial,
PropPartial,
StylePartial,
):
[docs] def __init__(self, owner: _T, component: XShape, lo_inst: LoInst | None = None) -> None:
self._owner = owner
ShapeBase.__init__(self, owner=owner, component=component, lo_inst=lo_inst)
GraphicObjectShapeComp.__init__(self, component)
ShapePartialProps.__init__(self, component=component) # type: ignore
# pylint: disable=no-member
generic_args = self._ComponentBase__get_generic_args() # type: ignore
PropertyChangeImplement.__init__(self, component=self.component, trigger_args=generic_args) # type: ignore
VetoableChangeImplement.__init__(self, component=self.component, trigger_args=generic_args) # type: ignore
DrawShapePartial.__init__(self, component=component, lo_inst=self.get_lo_inst())
QiPartial.__init__(self, component=component, lo_inst=self.get_lo_inst())
PropPartial.__init__(self, component=component, lo_inst=self.get_lo_inst())
StylePartial.__init__(self, component=component)
[docs] @override
def get_shape_type(self) -> str:
"""Returns the shape type of ``com.sun.star.drawing.GraphicObjectShape``."""
return "com.sun.star.drawing.GraphicObjectShape"
[docs] def clone(self) -> GraphicObjectShape[_T]:
"""Clones the shape."""
shape = self._clone()
return GraphicObjectShape[_T](owner=self._owner, component=shape, lo_inst=self.get_lo_inst())