| |
- builtins.tuple(builtins.object)
-
- CssProperty
- svgen.attribute.Attribute(abc.ABC)
-
- Style
class CssProperty(builtins.tuple) |
|
CssProperty(key: str, value: str)
A class for interacting with css properties. |
|
- Method resolution order:
- CssProperty
- builtins.tuple
- builtins.object
Methods defined here:
- __eq__(self, other: object) -> bool
- Determine if two css properties are the same.
- __getnewargs__(self)
- Return self as a plain tuple. Used by copy and pickle.
- __repr__(self)
- Return a nicely formatted representation string
- _asdict(self)
- Return a new dict which maps field names to their values.
- _replace(self, /, **kwds)
- Return a new CssProperty object replacing specified fields with new values
Class methods defined here:
- _make(iterable) from builtins.type
- Make a new CssProperty object from a sequence or iterable
Static methods defined here:
- __new__(_cls, key: str, value: str)
- Create new instance of CssProperty(key, value)
- color(color: Union[str, svgen.color.hsl.Hsl, svgen.color.rgb.Rgb, ForwardRef('Color')], prop: str = 'fill', **kwargs) -> 'CssProperty'
- Get a CSS property for a color.
- decode(value: str) -> List[ForwardRef('CssProperty')]
- Create css properties from a string.
- encode(props: List[ForwardRef('CssProperty')]) -> str
- Encode a list of css properties to a string.
- from_dict(data: Dict[str, Union[str, int, float]]) -> List[ForwardRef('CssProperty')]
- Get a list of attributes from dictionary data.
Readonly properties defined here:
- encoded
- Convert this css property to a string.
Data descriptors defined here:
- key
- Alias for field number 0
- value
- Alias for field number 1
Data and other attributes defined here:
- __annotations__ = {'key': <class 'str'>, 'value': <class 'str'>}
- __match_args__ = ('key', 'value')
- __orig_bases__ = (<function NamedTuple>,)
- _field_defaults = {}
- _fields = ('key', 'value')
Methods inherited from builtins.tuple:
- __add__(self, value, /)
- Return self+value.
- __contains__(self, key, /)
- Return bool(key in self).
- __ge__(self, value, /)
- Return self>=value.
- __getattribute__(self, name, /)
- Return getattr(self, name).
- __getitem__(self, key, /)
- Return self[key].
- __gt__(self, value, /)
- Return self>value.
- __hash__(self, /)
- Return hash(self).
- __iter__(self, /)
- Implement iter(self).
- __le__(self, value, /)
- Return self<=value.
- __len__(self, /)
- Return len(self).
- __lt__(self, value, /)
- Return self<value.
- __mul__(self, value, /)
- Return self*value.
- __ne__(self, value, /)
- Return self!=value.
- __rmul__(self, value, /)
- Return value*self.
- count(self, value, /)
- Return number of occurrences of value.
- index(self, value, start=0, stop=9223372036854775807, /)
- Return first index of value.
Raises ValueError if the value is not present.
Class methods inherited from builtins.tuple:
- __class_getitem__(...) from builtins.type
- See PEP 585
|
class Style(svgen.attribute.Attribute) |
|
Style(props: Union[Dict[str, Union[str, int, float]], List[svgen.attribute.style.CssProperty], svgen.attribute.style.CssProperty] = None) -> None
An interface for style attributes. |
|
- Method resolution order:
- Style
- svgen.attribute.Attribute
- abc.ABC
- builtins.object
Methods defined here:
- __eq__(self, other: object) -> bool
- Determine if two style attributes are the same.
- __init__(self, props: Union[Dict[str, Union[str, int, float]], List[svgen.attribute.style.CssProperty], svgen.attribute.style.CssProperty] = None) -> None
- Construct a new style attribute.
- add(self, props: Union[Dict[str, Union[str, int, float]], List[svgen.attribute.style.CssProperty], svgen.attribute.style.CssProperty]) -> None
- Add CSS properties to this style instance.
- add_color(self, color: Union[str, svgen.color.hsl.Hsl, svgen.color.rgb.Rgb, ForwardRef('Color')], prop: str = 'fill', **kwargs) -> 'Style'
- Set a style property to a color.
Class methods defined here:
- decode(key: str, value: str) -> 'Style' from abc.ABCMeta
- Create this attribute from a string.
Readonly properties defined here:
- value
- Get the string value for this attribute.
Data and other attributes defined here:
- __abstractmethods__ = frozenset()
- __hash__ = None
Methods inherited from svgen.attribute.Attribute:
- encode(self, quote: str = '"', force: bool = False) -> str
- Convert this attribute to a string.
Readonly properties inherited from svgen.attribute.Attribute:
- key
- Get the string key for this attribute.
Data descriptors inherited from svgen.attribute.Attribute:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
| |