U
    fw%Zæ  ã                   @   s   G d d„ de ƒZdS )c                   @   s$   e Zd ZdZdZdd„ Zdd„ ZdS )ÚWidgetaÎ  Base class for ttystatus widgets.

    Widgets display stuff on screen. The value may depend on data provided
    by the user (at creation time), or may be computed from one or more
    values in the TerminalStatus object to which the widget object belongs.

    There are two steps:

    * the widget `update` method is called by TerminalStatus whenever
      any of the values change
    * the widget `render` method is called by TerminalStatus when it is
      time to display things

    Widgets may have a static size, or their size may vary. The
    ``static_width`` property reveals this. This affects rendering:
    static sized widgets are rendered at their one static size; variable
    sized widgets are shrunk, if necessary, to make everything fit into
    the available space. If it's not possible to shrink enough, widgets
    are rendered from beginning until the space is full: variable sized
    widgets are rendered as small as possible in this case.

    Tc                 C   s   dS )a‘  Format the current value.

        ``width`` is the available width for the widget. It need not use
        all of it. If it's not possible for the widget to render itself
        small enough to fit into the given width, it may return a larger
        string, but the caller will probably truncate it.

        This will be called only when the value actually needs to be
        formatted.

        Ú © )ÚselfÚwidthr   r   ú2/usr/lib/python3/dist-packages/ttystatus/widget.pyÚrender,   s    zWidget.renderc                 C   s   dS )z6React to changes in values stored in a TerminalStatus.Nr   )r   Zterminal_statusr   r   r   Úupdate;   s    zWidget.updateN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Zstatic_widthr   r   r   r   r   r   r      s   r   N)Úobjectr   r   r   r   r   Ú<module>   ó    