2018-09-27 20:24:09 +00:00
|
|
|
#!/usr/bin/env python
|
2019-10-23 20:10:03 +00:00
|
|
|
import PySimpleGUI as sg
|
2018-08-29 13:10:19 +00:00
|
|
|
|
|
|
|
'''
|
2018-09-11 03:24:20 +00:00
|
|
|
A chat window. Add call to your send-routine, print the response and you're done
|
2019-04-05 15:41:53 +00:00
|
|
|
|
|
|
|
To see this program RUN on the web go here:
|
|
|
|
https://repl.it/@PySimpleGUI/Chat-Application-Demo
|
|
|
|
|
2019-06-26 15:09:42 +00:00
|
|
|
Note that the size of the display on repl.it is smaller than most, so the sizes of the
|
2019-04-05 15:41:53 +00:00
|
|
|
Multiline and Output text areas were reduced in the online version. Nothing else was changed
|
2018-08-29 13:10:19 +00:00
|
|
|
'''
|
|
|
|
|
2019-10-23 20:10:03 +00:00
|
|
|
# give our window a spiffy set of colors
|
|
|
|
sg.change_look_and_feel('GreenTan')
|
2018-09-11 03:24:20 +00:00
|
|
|
|
2019-10-23 20:10:03 +00:00
|
|
|
layout = [[sg.Text('Your output will go here', size=(40, 1))],
|
|
|
|
[sg.Output(size=(127, 30), font=('Helvetica 10'))],
|
|
|
|
[sg.MLine(size=(85, 5), enter_submits=True, key='query'),
|
|
|
|
sg.Button('SEND', button_color=(sg.YELLOWS[0], sg.BLUES[0]), bind_return_key=True),
|
|
|
|
sg.Button('EXIT', button_color=(sg.YELLOWS[0], sg.GREENS[0]))]]
|
2018-09-24 22:01:00 +00:00
|
|
|
|
2019-04-05 15:41:53 +00:00
|
|
|
window = sg.Window('Chat window',
|
2019-10-23 20:10:03 +00:00
|
|
|
layout,
|
2019-04-05 15:41:53 +00:00
|
|
|
default_element_size=(30, 2),
|
2019-10-23 20:10:03 +00:00
|
|
|
font=('Helvetica', ' 13'),
|
|
|
|
default_button_element_size=(8, 2))
|
2018-09-11 03:24:20 +00:00
|
|
|
|
|
|
|
# ---===--- Loop taking in user input and using it --- #
|
|
|
|
while True:
|
2019-10-23 20:10:03 +00:00
|
|
|
event, value = window.read()
|
2019-06-26 15:09:42 +00:00
|
|
|
if event == 'SEND':
|
2018-09-11 03:24:20 +00:00
|
|
|
query = value['query'].rstrip()
|
|
|
|
# EXECUTE YOUR COMMAND HERE
|
|
|
|
print('The command you entered was {}'.format(query))
|
2019-04-05 15:41:53 +00:00
|
|
|
elif event in (None, 'EXIT'): # quit if exit button or X
|
2018-09-11 03:24:20 +00:00
|
|
|
break
|