view gamelib/custom_widgets.py @ 803:bcc9277a23e6 pyntnclick

Refactor widget positioning API. Remove unused widgets
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 27 Jan 2013 14:52:16 +0200
parents efa58c92b304
children
line wrap: on
line source

"""Custom widgets for Suspened Sentence"""

import pygame
from pyntnclick.widgets.text import WrappedTextLabel


class JimLabel(WrappedTextLabel):
    """Custom widget for JIM's speech"""

    def __init__(self, gd, mesg):
        pos = (0, 0)
        size = None
        super(JimLabel, self).__init__(pos, gd, size=size,
                text=mesg, fontname='Monospace.ttf', fontsize=20,
                bg_color=pygame.Color(255, 175, 127, 191),
                color=pygame.Color(0, 0, 0),
                border_color=pygame.Color(127, 15, 0))

    def prepare(self):
        # Centre the widget
        super(JimLabel, self).prepare()
        self.rect.center = (self.gd.constants.screen[0] / 2,
                self.gd.constants.screen[1] / 2)