view pyntnclick/widgets/imagebutton.py @ 604:08647ef4d324 pyntnclick

ImageButtons have sizes.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 11 Feb 2012 20:11:58 +0200
parents 0ae62d824d2f
children fdc63049b08c
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, image):
        if not isinstance(rect, pygame.Rect):
            rect = pygame.Rect(rect, image.get_size())
        super(ImageButtonWidget, self).__init__(rect)
        self.image = image

    def draw(self, surface):
        surface.blit(self.image, self.rect)