ménage (par le vide)
[minwii.git] / src / pgu / gui / const.py
diff --git a/src/pgu/gui/const.py b/src/pgu/gui/const.py
deleted file mode 100644 (file)
index d11a02d..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-"""Constants.
-<br><br>
-<strong>Event Types</strong>
-
-<p>from pygame</p>
-<dl>
-<dt>QUIT
-<dt>MOUSEBUTTONDOWN
-<dt>MOUSEBUTTONUP
-<dt>MOUSEMOTION
-<dt>KEYDOWN
-</dl>
-
-<p>gui specific</p>
-<dl>
-<dt>ENTER
-<dt>EXIT
-<dt>BLUR
-<dt>FOCUS
-<dt>CLICK
-<dt>CHANGE
-<dt>OPEN
-<dt>CLOSE
-<dt>INIT
-</dl>
-
-<strong>Other</strong>
-<dl>
-<dt>NOATTR
-</dl>
-"""
-import pygame
-
-from pygame.locals import QUIT, MOUSEBUTTONDOWN, MOUSEBUTTONUP, MOUSEMOTION, KEYDOWN, USEREVENT
-base = pygame.USEREVENT
-print 'pgu base:', base
-ENTER  = base + 0
-EXIT   = base + 1
-BLUR   = base + 2
-FOCUS  = base + 3
-CLICK  = base + 4
-CHANGE = base + 5
-OPEN   = base + 6
-CLOSE  = base + 7
-INIT   = 'init'
-
-pygame.USEREVENT = CLOSE
-if pygame.USEREVENT > pygame.NUMEVENTS :
-    pygame.NUMEVENTS = pygame.USEREVENT
-
-class NOATTR: pass
\ No newline at end of file