view mamba/widgets/imagebutton.py @ 155:9afea431af36

Move common widget defauts (mainly colours) to constants
author Stefano Rivera <stefano@rivera.za.net>
date Tue, 13 Sep 2011 22:41:49 +0200
parents d5aa5f805f00
children 77ea895e4d37
line wrap: on
line source

import pygame

from mamba.constants import COLOR, FONT_SIZE, FOCUS_COLOR
from mamba.widgets.base import Button
from mamba.widgets.text import TextWidget


class ImageButtonWidget(Button, TextWidget):
    """Text label with image on the left"""

    def __init__(self, rect, image, text, fontsize=FONT_SIZE, color=COLOR):
        self.image = image
        self.focus_color = pygame.Color(FOCUS_COLOR)
        self.padding = 5
        self.border = 2
        super(ImageButtonWidget, self).__init__(rect, text, fontsize, color)
        self.focussable = True

    def prepare(self):
        super(ImageButtonWidget, self).prepare()
        text_surface = self.surface
        # Image is already a surface
        self._focussed = self.focussed
        color = self.focus_color if self.focussed else self.color

        self.rect.width = text_surface.get_width() + self.image.get_width() \
                + 5 + self.padding * 2
        self.rect.height = max(text_surface.get_height(),
                self.image.get_height()) + self.padding * 2
        self.surface = pygame.Surface(self.rect.size)
        self.surface.blit(self.image, (self.padding, self.padding))
        self.surface.blit(text_surface,
                (self.image.get_width() + 5 + self.padding, self.padding))
        pygame.draw.rect(self.surface, color, self.surface.get_rect(),
                         self.border)

    def draw(self, surface):
        if self._focussed != self.focussed:
            self.prepare()
        super(ImageButtonWidget, self).draw(surface)