view pyntnclick/widgets/overlay.py @ 736:f5e381e819a1 pyntnclick

Update file widget to changed widget init pattern
author Neil Muller <neil@mcp.home.test>
date Wed, 16 Jan 2013 00:27:50 +0200
parents fdc63049b08c
children
line wrap: on
line source

from pyntnclick.widgets.base import Button


class OverlayButton(Button):
    """A non-visiable clickable area, that causes an overlay to be
    displayed. Doesn't really understand this focus thing."""

    def __init__(self, rect, gd, image):
        self.image = image
        super(OverlayButton, self).__init__(rect, gd)

    def draw(self, surface):
        if not self.disabled:
            surface.blit(self.image, surface.get_rect())