view pyntnclick/widgets/imagebutton.py @ 786:fb8c146017a9 pyntnclick

Add warnings for 'po file is older than mo file' and 'mo file missing'
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 26 Jan 2013 20:01:39 +0200
parents f67bc162d69e
children bcc9277a23e6
line wrap: on
line source

import pygame

from pyntnclick.widgets.base import Button


class ImageButtonWidget(Button):
    """An image that is also a button. Whatever next?"""

    def __init__(self, rect, gd, image):
        if not isinstance(rect, pygame.Rect):
            rect = pygame.Rect(rect, image.get_size())
        super(ImageButtonWidget, self).__init__(rect, gd)
        self.image = image
        self.visible = True

    def draw(self, surface):
        self.disabled = not self.visible
        if self.visible:
            surface.blit(self.image, self.rect)