コード例 #1
0
ファイル: protfuncs.py プロジェクト: zenon-tmb/evennia
def center_justify(*args, **kwargs):
    """
    Usage: $center_justify(<text>)
    Returns <text> centered in screen width.

    """
    if args:
        return base_justify(args[0], align='c')
    return ""
コード例 #2
0
ファイル: protfuncs.py プロジェクト: zenon-tmb/evennia
def left_justify(*args, **kwargs):
    """
    Usage: $left_justify(<text>)
    Returns <text> left-justified.

    """
    if args:
        return base_justify(args[0], align='l')
    return ""
コード例 #3
0
ファイル: protfuncs.py プロジェクト: zenon-tmb/evennia
def right_justify(*args, **kwargs):
    """
    Usage: $right_justify(<text>)
    Returns <text> right-justified across screen width.

    """
    if args:
        return base_justify(args[0], align='r')
    return ""
コード例 #4
0
ファイル: protfuncs.py プロジェクト: zenon-tmb/evennia
def full_justify(*args, **kwargs):
    """
    Usage: $full_justify(<text>)
    Returns <text> filling up screen width by adding extra space.

    """
    if args:
        return base_justify(args[0], align='f')
    return ""
コード例 #5
0
ファイル: protfuncs.py プロジェクト: muddery/muddery
def right_justify(*args, **kwargs):
    """
    Usage: $right_justify(<text>)
    Returns <text> right-justified across screen width.

    """
    if args:
        return base_justify(args[0], align='r')
    return ""
コード例 #6
0
ファイル: protfuncs.py プロジェクト: muddery/muddery
def left_justify(*args, **kwargs):
    """
    Usage: $left_justify(<text>)
    Returns <text> left-justified.

    """
    if args:
        return base_justify(args[0], align='l')
    return ""
コード例 #7
0
ファイル: protfuncs.py プロジェクト: muddery/muddery
def center_justify(*args, **kwargs):

    """
    Usage: $center_justify(<text>)
    Returns <text> centered in screen width.

    """
    if args:
        return base_justify(args[0], align='c')
    return ""
コード例 #8
0
ファイル: protfuncs.py プロジェクト: muddery/muddery
def full_justify(*args, **kwargs):

    """
    Usage: $full_justify(<text>)
    Returns <text> filling up screen width by adding extra space.

    """
    if args:
        return base_justify(args[0], align='f')
    return ""