annotate gamelib/hand.py @ 144:29ba5456e8b3

Removed a bunch of cruft.
author Jeremy Thurgood <firxen@gmail.com>
date Tue, 24 Aug 2010 22:57:09 +0200
parents 97322b78d1c1
children ef4da30f0f38
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
36
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
1 # Button for the hand image
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
2
57
4f9d412d83db Use hand icon from openclipart
Neil Muller <neil@dip.sun.ac.za>
parents: 49
diff changeset
3 from constants import BUTTON_SIZE
4f9d412d83db Use hand icon from openclipart
Neil Muller <neil@dip.sun.ac.za>
parents: 49
diff changeset
4
36
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
5 from albow.controls import ImageButton
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
6 from albow.resource import get_image
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
7 from albow.utils import frame_rect
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
8 from pygame.color import Color
57
4f9d412d83db Use hand icon from openclipart
Neil Muller <neil@dip.sun.ac.za>
parents: 49
diff changeset
9 from pygame.rect import Rect
36
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
10
124
97322b78d1c1 Minor style cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 84
diff changeset
11
84
c76f2fad2af5 Draw CursorWidget on top of StateWidget
Stefano Rivera <stefano@rivera.za.net>
parents: 70
diff changeset
12 class HandButton(ImageButton):
44
79062a225703 Correct out-by-one indentation error. :)
Simon Cross <simon@simonx>
parents: 36
diff changeset
13 """The fancy hand button for the widget"""
36
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
14
44
79062a225703 Correct out-by-one indentation error. :)
Simon Cross <simon@simonx>
parents: 36
diff changeset
15 def __init__(self, action):
79062a225703 Correct out-by-one indentation error. :)
Simon Cross <simon@simonx>
parents: 36
diff changeset
16 # FIXME: Yes, please.
57
4f9d412d83db Use hand icon from openclipart
Neil Muller <neil@dip.sun.ac.za>
parents: 49
diff changeset
17 this_image = get_image('items', 'hand.png')
44
79062a225703 Correct out-by-one indentation error. :)
Simon Cross <simon@simonx>
parents: 36
diff changeset
18 ImageButton.__init__(self, image=this_image, action=action)
57
4f9d412d83db Use hand icon from openclipart
Neil Muller <neil@dip.sun.ac.za>
parents: 49
diff changeset
19 self.set_rect(Rect(0, 0, BUTTON_SIZE, BUTTON_SIZE))
36
31a431f795e1 Add a hand button placeholder
Neil Muller <neil@dip.sun.ac.za>
parents:
diff changeset
20