""" Style properties are descriptors which allow the ``Styles`` object to accept different types when setting attributes. This gives the developer more freedom in how to express style information. Descriptors also play nicely with Mypy, which is aware that attributes can have different types when setting and getting. """ from __future__ import annotations from operator import attrgetter from typing import ( TYPE_CHECKING, Generic, Iterable, Literal, NamedTuple, Sequence, TypeVar, cast, ) import rich.errors import rich.repr from rich.style import Style from typing_extensions import TypeAlias from textual._border import normalize_border_value from textual._cells import cell_len from textual.color import TRANSPARENT, Color, ColorParseError from textual.css._error_tools import friendly_list from textual.css._help_text import ( border_property_help_text, color_property_help_text, fractional_property_help_text, layout_property_help_text, offset_property_help_text, scalar_help_text, spacing_wrong_number_of_values_help_text, string_enum_help_text, style_flags_property_help_text, ) from textual.css.constants import HATCHES, VALID_STYLE_FLAGS from textual.css.errors import StyleTypeError, StyleValueError from textual.css.scalar import ( NULL_SCALAR, UNIT_SYMBOL, Scalar, ScalarOffset, ScalarParseError, Unit, get_symbols, percentage_string_to_float, ) from textual.css.transition import Transition from textual.geometry import NULL_SPACING, Spacing, SpacingDimensions, clamp if TYPE_CHECKING: from textual.canvas import CanvasLineType from textual.layout import Layout from textual.css.styles import StylesBase from textual.css.types import AlignHorizontal, AlignVertical, DockEdge, EdgeType BorderDefinition: TypeAlias = ( "Sequence[tuple[EdgeType, str | Color] | None] | tuple[EdgeType, str | Color] | Literal['none']" ) PropertyGetType = TypeVar("PropertyGetType") PropertySetType = TypeVar("PropertySetType") EnumType = TypeVar("EnumType", covariant=True) class GenericProperty(Generic[PropertyGetType, PropertySetType]): """Descriptor that abstracts away common machinery for other style descriptors. Args: default: The default value (or a factory thereof) of the property. layout: Whether to refresh the node layout on value change. refresh_children: Whether to refresh the node children on value change. """ def __init__( self, default: PropertyGetType, layout: bool = False, refresh_children: bool = False, ) -> None: self.default = default self.layout = layout self.refresh_children = refresh_children def validate_value(self, value: object) -> PropertyGetType: """Validate the setter value. Args: value: The value being set. Returns: The value to be set. """ # Raise StyleValueError here return cast(PropertyGetType, value) def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> PropertyGetType: return obj.get_rule(self.name, self.default) # type: ignore[return-value] def __set__(self, obj: StylesBase, value: PropertySetType | None) -> None: _rich_traceback_omit = True if value is None: obj.clear_rule(self.name) obj.refresh(layout=self.layout, children=self.refresh_children) return new_value = self.validate_value(value) if obj.set_rule(self.name, new_value): obj.refresh(layout=self.layout, children=self.refresh_children) class IntegerProperty(GenericProperty[int, int]): def validate_value(self, value: object) -> int: if isinstance(value, (int, float)): return int(value) else: raise StyleValueError(f"Expected a number here, got {value!r}") class BooleanProperty(GenericProperty[bool, bool]): """A property that requires a True or False value.""" def validate_value(self, value: object) -> bool: return bool(value) class ScalarProperty: """Descriptor for getting and setting scalar properties. Scalars are numeric values with a unit, e.g. "50vh".""" def __init__( self, units: set[Unit] | None = None, percent_unit: Unit = Unit.WIDTH, allow_auto: bool = True, ) -> None: self.units: set[Unit] = units or {*UNIT_SYMBOL} self.percent_unit = percent_unit self.allow_auto = allow_auto super().__init__() def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> Scalar | None: """Get the scalar property. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The Scalar object or ``None`` if it's not set. """ return obj.get_rule(self.name) # type: ignore[return-value] def __set__( self, obj: StylesBase, value: float | int | Scalar | str | None ) -> None: """Set the scalar property. Args: obj: The ``Styles`` object. value: The value to set the scalar property to. You can directly pass a float or int value, which will be interpreted with a default unit of Cells. You may also provide a string such as ``"50%"``, as you might do when writing CSS. If a string with no units is supplied, Cells will be used as the unit. Alternatively, you can directly supply a ``Scalar`` object. Raises: StyleValueError: If the value is of an invalid type, uses an invalid unit, or cannot be parsed for any other reason. """ _rich_traceback_omit = True if value is None: obj.clear_rule(self.name) obj.refresh(layout=True) return if isinstance(value, (int, float)): new_value = Scalar(float(value), Unit.CELLS, Unit.WIDTH) elif isinstance(value, Scalar): new_value = value elif isinstance(value, str): try: new_value = Scalar.parse(value) except ScalarParseError: raise StyleValueError( f"unable to parse scalar from {value!r}", help_text=scalar_help_text( property_name=self.name, context="inline" ), ) else: raise StyleValueError("expected float, int, Scalar, or None") if ( new_value is not None and new_value.unit == Unit.AUTO and not self.allow_auto ): raise StyleValueError("'auto' not allowed here") if new_value is not None and new_value.unit != Unit.AUTO: if new_value.unit not in self.units: raise StyleValueError( f"{self.name} units must be one of {friendly_list(get_symbols(self.units))}" ) if new_value.is_percent: new_value = Scalar( float(new_value.value), self.percent_unit, Unit.WIDTH ) if obj.set_rule(self.name, new_value): obj.refresh(layout=True) class ScalarListProperty: """Descriptor for lists of scalars. Args: percent_unit: The dimension to which percentage scalars will be relative to. refresh_children: Whether to refresh the node children on value change. """ def __init__(self, percent_unit: Unit, refresh_children: bool = False) -> None: self.percent_unit = percent_unit self.refresh_children = refresh_children def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> tuple[Scalar, ...] | None: return obj.get_rule(self.name) # type: ignore[return-value] def __set__( self, obj: StylesBase, value: str | Iterable[str | float] | None ) -> None: if value is None: obj.clear_rule(self.name) obj.refresh(layout=True, children=self.refresh_children) return parse_values: Iterable[str | float] if isinstance(value, str): parse_values = value.split() else: parse_values = value scalars = [] for parse_value in parse_values: if isinstance(parse_value, (int, float)): scalars.append(Scalar.from_number(parse_value)) else: scalars.append( Scalar.parse(parse_value, self.percent_unit) if isinstance(parse_value, str) else parse_value ) if obj.set_rule(self.name, tuple(scalars)): obj.refresh(layout=True, children=self.refresh_children) class BoxProperty: """Descriptor for getting and setting outlines and borders along a single edge. For example "border-right", "outline-bottom", etc. """ def __init__(self, default_color: Color) -> None: self._default_color = default_color def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name _type, edge = name.split("_") self._type = _type self.edge = edge def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> tuple[EdgeType, Color]: """Get the box property. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: A ``tuple[EdgeType, Style]`` containing the string type of the box and its style. Example types are "round", "solid", and "dashed". """ return obj.get_rule(self.name) or ("", self._default_color) # type: ignore[return-value] def __set__( self, obj: StylesBase, border: tuple[EdgeType, str | Color] | Literal["none"] | None, ): """Set the box property. Args: obj: The ``Styles`` object. value: A 2-tuple containing the type of box to use, e.g. "dashed", and the ``Style`` to be used. You can supply the ``Style`` directly, or pass a ``str`` (e.g. ``"blue on #f0f0f0"`` ) or ``Color`` instead. Raises: StyleValueError: If the string supplied for the color is not a valid color. """ if border is None: if obj.clear_rule(self.name): obj.refresh(layout=True) elif border == "none": obj.set_rule(self.name, ("", obj.get_rule(self.name)[1])) else: _type, color = border if _type in ("none", "hidden"): _type = "" new_value = border if isinstance(color, str): try: new_value = (_type, Color.parse(color)) except ColorParseError as error: raise StyleValueError( str(error), help_text=border_property_help_text( self.name, context="inline" ), ) elif isinstance(color, Color): new_value = (_type, color) current_value: tuple[str, Color] = cast( "tuple[str, Color]", obj.get_rule(self.name) ) has_edge = bool(current_value and current_value[0]) new_edge = bool(_type) if obj.set_rule(self.name, new_value): obj.refresh(layout=has_edge != new_edge) @rich.repr.auto class Edges(NamedTuple): """Stores edges for border / outline.""" top: tuple[EdgeType, Color] right: tuple[EdgeType, Color] bottom: tuple[EdgeType, Color] left: tuple[EdgeType, Color] def __bool__(self) -> bool: (top, _), (right, _), (bottom, _), (left, _) = self return bool(top or right or bottom or left) def __rich_repr__(self) -> rich.repr.Result: top, right, bottom, left = self if top[0]: yield "top", top if right[0]: yield "right", right if bottom[0]: yield "bottom", bottom if left[0]: yield "left", left @property def spacing(self) -> Spacing: """Get spacing created by borders. Returns: Spacing for top, right, bottom, and left. """ (top, _), (right, _), (bottom, _), (left, _) = self return Spacing( 1 if top else 0, 1 if right else 0, 1 if bottom else 0, 1 if left else 0, ) class BorderProperty: """Descriptor for getting and setting full borders and outlines. Args: layout: True if the layout should be refreshed after setting, False otherwise. """ def __init__(self, layout: bool) -> None: self._layout = layout def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name self._properties = ( f"{name}_top", f"{name}_right", f"{name}_bottom", f"{name}_left", ) self._get_properties = attrgetter(*self._properties) def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> Edges: """Get the border. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: An ``Edges`` object describing the type and style of each edge. """ return Edges(*self._get_properties(obj)) def __set__( self, obj: StylesBase, border: BorderDefinition | None, ) -> None: """Set the border. Args: obj: The ``Styles`` object. border: A ``tuple[EdgeType, str | Color | Style]`` representing the type of box to use and the ``Style`` to apply to the box. Alternatively, you can supply a sequence of these tuples and they will be applied per-edge. If the sequence is of length 1, all edges will be decorated according to the single element. If the sequence is length 2, the first ``tuple`` will be applied to the top and bottom edges. If the sequence is length 4, the tuples will be applied to the edges in the order: top, right, bottom, left. Raises: StyleValueError: When the supplied ``tuple`` is not of valid length (1, 2, or 4). """ _rich_traceback_omit = True top, right, bottom, left = self._properties border_spacing = Edges(*self._get_properties(obj)).spacing def check_refresh() -> None: """Check if an update requires a layout""" if not self._layout: obj.refresh() else: layout = Edges(*self._get_properties(obj)).spacing != border_spacing obj.refresh(layout=layout) if border is None: clear_rule = obj.clear_rule clear_rule(top) clear_rule(right) clear_rule(bottom) clear_rule(left) check_refresh() return elif border == "none": set_rule = obj.set_rule get_rule = obj.get_rule set_rule(top, ("", get_rule(top)[1])) set_rule(right, ("", get_rule(right)[1])) set_rule(bottom, ("", get_rule(bottom)[1])) set_rule(left, ("", get_rule(left)[1])) check_refresh() return if isinstance(border, tuple) and len(border) == 2: _border = normalize_border_value(border) # type: ignore setattr(obj, top, _border) setattr(obj, right, _border) setattr(obj, bottom, _border) setattr(obj, left, _border) check_refresh() return count = len(border) if count == 1: _border = normalize_border_value(border[0]) # type: ignore setattr(obj, top, _border) setattr(obj, right, _border) setattr(obj, bottom, _border) setattr(obj, left, _border) elif count == 2: _border1, _border2 = ( normalize_border_value(border[0]), # type: ignore normalize_border_value(border[1]), # type: ignore ) setattr(obj, top, _border1) setattr(obj, bottom, _border1) setattr(obj, right, _border2) setattr(obj, left, _border2) elif count == 4: _border1, _border2, _border3, _border4 = ( normalize_border_value(border[0]), # type: ignore normalize_border_value(border[1]), # type: ignore normalize_border_value(border[2]), # type: ignore normalize_border_value(border[3]), # type: ignore ) setattr(obj, top, _border1) setattr(obj, right, _border2) setattr(obj, bottom, _border3) setattr(obj, left, _border4) else: raise StyleValueError( "expected 1, 2, or 4 values", help_text=border_property_help_text(self.name, context="inline"), ) check_refresh() class KeylineProperty: """Descriptor for getting and setting keyline information.""" def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> tuple[CanvasLineType, Color]: return obj.get_rule("keyline", ("none", TRANSPARENT)) # type: ignore[return-value] def __set__(self, obj: StylesBase, keyline: tuple[str, Color] | None): if keyline is None: if obj.clear_rule("keyline"): obj.refresh(layout=True) else: if obj.set_rule("keyline", keyline): obj.refresh(layout=True) class SpacingProperty: """Descriptor for getting and setting spacing properties (e.g. padding and margin).""" def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> Spacing: """Get the Spacing. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The Spacing. If unset, returns the null spacing ``(0, 0, 0, 0)``. """ return obj.get_rule(self.name, NULL_SPACING) # type: ignore[return-value] def __set__(self, obj: StylesBase, spacing: SpacingDimensions | None): """Set the Spacing. Args: obj: The ``Styles`` object. style: You can supply the ``Style`` directly, or a string (e.g. ``"blue on #f0f0f0"``). Raises: ValueError: When the value is malformed, e.g. a ``tuple`` with a length that is not 1, 2, or 4. """ _rich_traceback_omit = True if spacing is None: if obj.clear_rule(self.name): obj.refresh(layout=True) else: try: unpacked_spacing = Spacing.unpack(spacing) except ValueError as error: raise StyleValueError( str(error), help_text=spacing_wrong_number_of_values_help_text( property_name=self.name, num_values_supplied=( 1 if isinstance(spacing, int) else len(spacing) ), context="inline", ), ) if obj.set_rule(self.name, unpacked_spacing): obj.refresh(layout=True) class DockProperty: """Descriptor for getting and setting the dock property. The dock property allows you to specify which edge you want to fix a Widget to. """ def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> DockEdge: """Get the Dock property. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The edge name as a string. Returns "none" if unset or if "none" has been explicitly set. """ return obj.get_rule("dock", "none") # type: ignore[return-value] def __set__(self, obj: StylesBase, dock_name: str): """Set the Dock property. Args: obj: The ``Styles`` object. dock_name: The name of the dock to attach this widget to. """ _rich_traceback_omit = True if obj.set_rule("dock", dock_name): obj.refresh(layout=True) class SplitProperty: """Descriptor for getting and setting the split property. The split property allows you to specify which edge you want to split. """ def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> DockEdge: """Get the Split property. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The edge name as a string. Returns "none" if unset or if "none" has been explicitly set. """ return obj.get_rule("split", "none") # type: ignore[return-value] def __set__(self, obj: StylesBase, dock_name: str): """Set the Dock property. Args: obj: The ``Styles`` object. dock_name: The name of the dock to attach this widget to. """ _rich_traceback_omit = True if obj.set_rule("split", dock_name): obj.refresh(layout=True) class LayoutProperty: """Descriptor for getting and setting layout.""" def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> Layout | None: """ Args: obj: The Styles object. objtype: The Styles class. Returns: The `Layout` object. """ return obj.get_rule(self.name) # type: ignore[return-value] def __set__(self, obj: StylesBase, layout: str | Layout | None): """ Args: obj: The Styles object. layout: The layout to use. You can supply the name of the layout or a `Layout` object. """ from textual.layouts.factory import Layout # Prevents circular import from textual.layouts.factory import MissingLayout, get_layout _rich_traceback_omit = True if layout is None: if obj.clear_rule("layout"): obj.refresh(layout=True, children=True) return if isinstance(layout, Layout): layout = layout.name if obj.layout is not None and obj.layout.name == layout: return try: layout_object = get_layout(layout) except MissingLayout as error: raise StyleValueError( str(error), help_text=layout_property_help_text(self.name, context="inline"), ) if obj.set_rule("layout", layout_object): obj.refresh(layout=True, children=True) class OffsetProperty: """Descriptor for getting and setting the offset property. Offset consists of two values, x and y, that a widget's position will be adjusted by before it is rendered. """ def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> ScalarOffset: """Get the offset. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The ``ScalarOffset`` indicating the adjustment that will be made to widget position prior to it being rendered. """ return obj.get_rule(self.name, NULL_SCALAR) # type: ignore[return-value] def __set__( self, obj: StylesBase, offset: tuple[int | str, int | str] | ScalarOffset | None ): """Set the offset. Args: obj: The ``Styles`` class. offset: A ScalarOffset object, or a 2-tuple of the form ``(x, y)`` indicating the x and y offsets. When the ``tuple`` form is used, x and y can be specified as either ``int`` or ``str``. The string format allows you to also specify any valid scalar unit e.g. ``("0.5vw", "0.5vh")``. Raises: ScalarParseError: If any of the string values supplied in the 2-tuple cannot be parsed into a Scalar. For example, if you specify a non-existent unit. """ _rich_traceback_omit = True if offset is None: if obj.clear_rule(self.name): obj.refresh(layout=True, repaint=False) elif isinstance(offset, ScalarOffset): if obj.set_rule(self.name, offset): obj.refresh(layout=True, repaint=False) else: x, y = offset try: scalar_x = ( Scalar.parse(x, Unit.WIDTH) if isinstance(x, str) else Scalar(float(x), Unit.CELLS, Unit.WIDTH) ) scalar_y = ( Scalar.parse(y, Unit.HEIGHT) if isinstance(y, str) else Scalar(float(y), Unit.CELLS, Unit.HEIGHT) ) except ScalarParseError as error: raise StyleValueError( str(error), help_text=offset_property_help_text(context="inline") ) _offset = ScalarOffset(scalar_x, scalar_y) if obj.set_rule(self.name, _offset): obj.refresh(layout=True, repaint=False) class StringEnumProperty(Generic[EnumType]): """Descriptor for getting and setting string properties and ensuring that the set value belongs in the set of valid values. Args: valid_values: The set of valid values that the descriptor can take. default: The default value (or a factory thereof) of the property. layout: Whether to refresh the node layout on value change. refresh_children: Whether to refresh the node children on value change. display: Does this property change display? """ def __init__( self, valid_values: set[str], default: EnumType, layout: bool = False, refresh_children: bool = False, refresh_parent: bool = False, display: bool = False, ) -> None: self._valid_values = valid_values self._default = default self._layout = layout self._refresh_children = refresh_children self._refresh_parent = refresh_parent self._display = display def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> EnumType: """Get the string property, or the default value if it's not set. Args: obj: The `Styles` object. objtype: The `Styles` class. Returns: The string property value. """ return obj.get_rule(self.name, self._default) # type: ignore def _before_refresh(self, obj: StylesBase, value: str | None) -> None: """Do any housekeeping before asking for a layout refresh after a value change.""" def __set__(self, obj: StylesBase, value: EnumType | None = None): """Set the string property and ensure it is in the set of allowed values. Args: obj: The `Styles` object. value: The string value to set the property to. Raises: StyleValueError: If the value is not in the set of valid values. """ _rich_traceback_omit = True if value is None: if obj.clear_rule(self.name): self._before_refresh(obj, value) obj.refresh( layout=self._layout, children=self._refresh_children, parent=self._refresh_parent, ) if self._display: node = obj.node if node is not None and node.parent: node._nodes.updated() else: if value not in self._valid_values: raise StyleValueError( f"{self.name} must be one of {friendly_list(self._valid_values)} (received {value!r})", help_text=string_enum_help_text( self.name, valid_values=list(self._valid_values), context="inline", ), ) if obj.set_rule(self.name, value): if self._display and obj.node is not None: node = obj.node if node.parent: node._nodes.updated() node.parent._refresh_styles() self._before_refresh(obj, value) obj.refresh( layout=self._layout, children=self._refresh_children, parent=self._refresh_parent, ) class OverflowProperty(StringEnumProperty): """Descriptor for overflow styles that forces widgets to refresh scrollbars.""" def _before_refresh(self, obj: StylesBase, value: str | None) -> None: from textual.widget import Widget # Avoid circular import if isinstance(obj.node, Widget): obj.node._refresh_scrollbars() class NameProperty: """Descriptor for getting and setting name properties.""" def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__(self, obj: StylesBase, objtype: type[StylesBase] | None) -> str: """Get the name property. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The name. """ return obj.get_rule(self.name, "") # type: ignore[return-value] def __set__(self, obj: StylesBase, name: str | None): """Set the name property. Args: obj: The ``Styles`` object. name: The name to set the property to. Raises: StyleTypeError: If the value is not a ``str``. """ _rich_traceback_omit = True if name is None: if obj.clear_rule(self.name): obj.refresh(layout=True) else: if not isinstance(name, str): raise StyleTypeError(f"{self.name} must be a str") if obj.set_rule(self.name, name): obj.refresh(layout=True) class NameListProperty: def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> tuple[str, ...]: return obj.get_rule(self.name, ()) # type: ignore[return-value] def __set__(self, obj: StylesBase, names: str | tuple[str] | None = None): _rich_traceback_omit = True if names is None: if obj.clear_rule(self.name): obj.refresh(layout=True) elif isinstance(names, str): if obj.set_rule( self.name, tuple(name.strip().lower() for name in names.split(" ")) ): obj.refresh(layout=True) elif isinstance(names, tuple): if obj.set_rule(self.name, names): obj.refresh(layout=True) class ColorProperty: """Descriptor for getting and setting color properties.""" def __init__(self, default_color: Color | str) -> None: self._default_color = Color.parse(default_color) def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> Color: """Get a ``Color``. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The Color. """ return obj.get_rule(self.name, self._default_color) # type: ignore[return-value] def __set__(self, obj: StylesBase, color: Color | str | None) -> None: """Set the Color. Args: obj: The ``Styles`` object. color: The color to set. Pass a ``Color`` instance directly, or pass a ``str`` which will be parsed into a color (e.g. ``"red""``, ``"rgb(20, 50, 80)"``, ``"#f4e32d"``). Raises: ColorParseError: When the color string is invalid. """ _rich_traceback_omit = True if color is None: if obj.clear_rule(self.name): obj.refresh(children=True) elif isinstance(color, Color): if obj.set_rule(self.name, color): obj.refresh(children=True) elif isinstance(color, str): alpha = 1.0 parsed_color = Color(255, 255, 255) for token in color.split(): if token.endswith("%"): try: alpha = percentage_string_to_float(token) except ValueError: raise StyleValueError(f"invalid percentage value '{token}'") continue try: parsed_color = Color.parse(token) except ColorParseError as error: raise StyleValueError( f"Invalid color value '{token}'", help_text=color_property_help_text( self.name, context="inline", error=error, value=token ), ) parsed_color = parsed_color.multiply_alpha(alpha) if obj.set_rule(self.name, parsed_color): obj.refresh(children=True) else: raise StyleValueError(f"Invalid color value {color}") class ScrollbarColorProperty(ColorProperty): """A descriptor to set scrollbar color(s).""" def __set__(self, obj: StylesBase, color: Color | str | None) -> None: super().__set__(obj, color) if obj.node is None: return from textual.widget import Widget if isinstance(obj.node, Widget): widget = obj.node if widget.show_horizontal_scrollbar: widget.horizontal_scrollbar.refresh() if widget.show_vertical_scrollbar: widget.vertical_scrollbar.refresh() class StyleFlagsProperty: """Descriptor for getting and set style flag properties (e.g. ``bold italic underline``).""" def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> Style: """Get the ``Style``. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The ``Style`` object. """ return obj.get_rule(self.name, Style.null()) # type: ignore[return-value] def __set__(self, obj: StylesBase, style_flags: Style | str | None) -> None: """Set the style using a style flag string. Args: obj: The ``Styles`` object. style_flags: The style flags to set as a string. For example, ``"bold italic"``. Raises: StyleValueError: If the value is an invalid style flag. """ _rich_traceback_omit = True if style_flags is None: if obj.clear_rule(self.name): obj.refresh(children=True) elif isinstance(style_flags, Style): if obj.set_rule(self.name, style_flags): obj.refresh(children=True) else: words = [word.strip() for word in style_flags.split(" ")] valid_word = VALID_STYLE_FLAGS.__contains__ for word in words: if not valid_word(word): raise StyleValueError( f"unknown word {word!r} in style flags", help_text=style_flags_property_help_text( self.name, word, context="inline" ), ) try: style = Style.parse(style_flags) except rich.errors.StyleSyntaxError as error: if "none" in words and len(words) > 1: raise StyleValueError( "cannot mix 'none' with other style flags", help_text=style_flags_property_help_text( self.name, " ".join(words), context="inline" ), ) from None raise error from None if obj.set_rule(self.name, style): obj.refresh(children=True) class TransitionsProperty: """Descriptor for getting transitions properties""" def __get__( self, obj: StylesBase, objtype: type[StylesBase] | None = None ) -> dict[str, Transition]: """Get a mapping of properties to the transitions applied to them. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: A ``dict`` mapping property names to the ``Transition`` applied to them. e.g. ``{"offset": Transition(...), ...}``. If no transitions have been set, an empty ``dict`` is returned. """ return obj.get_rule("transitions", {}) # type: ignore[return-value] def __set__( self, obj: StylesBase, transitions: dict[str, Transition] | None ) -> None: _rich_traceback_omit = True if transitions is None: obj.clear_rule("transitions") else: obj.set_rule("transitions", transitions.copy()) class FractionalProperty: """Property that can be set either as a float (e.g. 0.1) or a string percentage (e.g. '10%'). Values will be clamped to the range (0, 1). """ def __init__(self, default: float = 1.0, children: bool = False): """ Args: default: Default value if the rule wasn't explicitly set. children: If `True`, then updating this value will also refresh children. Otherwise only this widget will be refreshed. """ self.default = default self.children = children def __set_name__(self, owner: StylesBase, name: str) -> None: self.name = name def __get__(self, obj: StylesBase, type: type[StylesBase]) -> float: """Get the property value as a float between 0 and 1. Args: obj: The ``Styles`` object. objtype: The ``Styles`` class. Returns: The value of the property (in the range (0, 1)). """ return obj.get_rule(self.name, self.default) # type: ignore[return-value] def __set__(self, obj: StylesBase, value: float | str | None) -> None: """Set the property value, clamping it between 0 and 1. Args: obj: The Styles object. value: The value to set as a float between 0 and 1, or as a percentage string such as '10%'. """ _rich_traceback_omit = True name = self.name if value is None: if obj.clear_rule(name): obj.refresh(children=self.children) return if isinstance(value, (int, float)): float_value = float(value) elif isinstance(value, str) and value.endswith("%"): float_value = float(Scalar.parse(value).value) / 100 else: raise StyleValueError( f"{self.name} must be a str (e.g. '10%') or a float (e.g. 0.1)", help_text=fractional_property_help_text(name, context="inline"), ) if obj.set_rule(name, clamp(float_value, 0, 1)): obj.refresh(children=self.children) class AlignProperty: """Combines the horizontal and vertical alignment properties into a single property.""" def __set_name__(self, owner: StylesBase, name: str) -> None: self.horizontal = f"{name}_horizontal" self.vertical = f"{name}_vertical" def __get__( self, obj: StylesBase, type: type[StylesBase] ) -> tuple[AlignHorizontal, AlignVertical]: horizontal = getattr(obj, self.horizontal) vertical = getattr(obj, self.vertical) return (horizontal, vertical) def __set__( self, obj: StylesBase, value: tuple[AlignHorizontal, AlignVertical] ) -> None: horizontal, vertical = value setattr(obj, self.horizontal, horizontal) setattr(obj, self.vertical, vertical) class HatchProperty: """Property to expose hatch style.""" def __get__( self, obj: StylesBase, type: type[StylesBase] ) -> tuple[str, Color] | Literal["none"]: return obj.get_rule("hatch") # type: ignore[return-value] def __set__( self, obj: StylesBase, value: tuple[str, Color | str] | Literal["none"] | None ) -> None: _rich_traceback_omit = True if value is None: if obj.clear_rule("hatch"): obj.refresh(children=True) return if value == "none": hatch = "none" else: character, color = value if len(character) != 1: try: character = HATCHES[character] except KeyError: raise ValueError( f"Expected a character or hatch value here; found {character!r}" ) from None if cell_len(character) != 1: raise ValueError("Hatch character must have a cell length of 1") if isinstance(color, str): color = Color.parse(color) hatch = (character, color) obj.set_rule("hatch", hatch)