Source code for ooodev.adapter.awt.fixed_text_partial

from __future__ import annotations
from typing import Any, TYPE_CHECKING

from com.sun.star.awt import XFixedText

from ooodev.utils.kind.align_kind import AlignKind
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 FixedTextPartial: """ Partial class for XFixedText. """ # pylint: disable=unused-argument
[docs] def __init__(self, component: XFixedText, interface: UnoInterface | None = XFixedText) -> None: """ Constructor Args: component (XFixedText): UNO Component that implements ``com.sun.star.awt.XFixedText`` interface. interface (UnoInterface, optional): The interface to be validated. Defaults to ``XFixedText``. """ 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 XFixedText
[docs] def get_alignment(self) -> AlignKind: """ Gets the alignment of the text in the control. Returns: AlignKind: The alignment of the text. Hint: - ``AlignKind`` can be imported from ``ooodev.utils.kind.align_kind``. """ return AlignKind(self.__component.getAlignment())
[docs] def get_text(self) -> str: """ Gets the text of the control. """ return self.__component.getText()
[docs] def set_alignment(self, align: int | AlignKind) -> None: """ Sets the alignment of the text in the control. Args: align (int | AlignKind): The alignment of the text. Hint: - ``AlignKind`` can be imported from ``ooodev.utils.kind.align_kind``. """ self.__component.setAlignment(int(align))
[docs] def set_text(self, text: str) -> None: """ Sets the text of the control. """ self.__component.setText(text)
# endregion XFixedText