forked from techtonik/python-vnc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinputbox.py
86 lines (75 loc) · 2.78 KB
/
inputbox.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
"""
Simple text input box.
havily based on inputbox.py from Timothy Downs
added 3d box style, escape -> abort function
changed event handling so that it uses the unicode
attribute -> handle localized keyboard
<cliechti@gmx.net>
"""
import pygame, pygame.font, pygame.event, pygame.draw
from pygame.locals import *
def get_key():
while 1:
event = pygame.event.poll()
if event.type == KEYDOWN:
return event.unicode and ord(event.unicode) or event.key
elif event.type == QUIT:
return K_ESCAPE
else:
pass
def display_box(screen, message):
"Print a message in a box in the middle of the screen"
fontobject = pygame.font.Font(None, 18)
# ease bg
pygame.draw.rect(screen, (0, 0, 0),
((screen.get_width() / 2) - 102,
(screen.get_height() / 2) - 10,
202, 20), 0)
# draw border
pygame.draw.rect(screen, (255, 255, 255),
((screen.get_width() / 2) - 104,
(screen.get_height() / 2) - 12,
204, 24), 2)
# 3d appearance
x = (screen.get_width() / 2) - 104
y = (screen.get_height() / 2) - 12
pygame.draw.line(screen, (155, 155, 155),
((screen.get_width() / 2) - 104,
y+24),
(x+204, y+24), 2)
pygame.draw.line(screen, (100, 100, 100),
(x+204,
(screen.get_height() / 2) - 12),
(x+204, y+24), 2)
if len(message) != 0:
screen.blit(fontobject.render(message, 1, (255, 255, 255)),
((screen.get_width() / 2) - 100, (screen.get_height() / 2) - 8))
pygame.display.flip()
def ask(screen, question, default='', password=0):
"ask(screen, question) -> answer"
pygame.font.init()
current_string = list(default)
display_box(screen, question + ": " + "".join(current_string))
while 1:
inkey = get_key()
if inkey == K_BACKSPACE:
current_string = current_string[0:-1]
elif inkey == K_RETURN:
break
elif inkey == K_ESCAPE:
return default
# ~ elif inkey == K_MINUS:
#~ current_string.append("_")
elif inkey <= 127:
current_string.append(chr(inkey))
if password:
display_box(screen, question + ": " + "*"*len(current_string))
else:
display_box(screen, question + ": " + "".join(current_string))
return bytes("".join(current_string), "ascii")
def main():
screen = pygame.display.set_mode((220,40))
screen.fill((0,100,255))
print(ask(screen, "Name") + " was entered")
if __name__ == '__main__':
main()