-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
72 lines (53 loc) · 2.44 KB
/
app.py
File metadata and controls
72 lines (53 loc) · 2.44 KB
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
from tkinter import *
from bot import get_response, bot_name
FONT = "Helvetica 14"
FONT_BOLD = "Helvetica 13 bold"
class ChatApplication:
def __init__(self):
self.window = Tk()
self._setup_main_window()
def run(self):
self.window.mainloop()
def _setup_main_window(self):
self.window.title("Chat with Intelligent Bot")
self.window.resizable(width=False, height=False)
self.window.configure(width=470, height=550, bg='#45855b')
head_label = Label(self.window, bg='#45855b', fg='#050505',
text="Welcome!!", font=FONT_BOLD, pady=10)
head_label.place(relwidth=1)
line = Label(self.window, width=450, bg='#dce6dd')
line.place(relwidth=1, rely=0.07, relheight=0.012)
self.text_widget = Text(self.window, width=20, height=2, bg='#edf2ee', fg='#000000',
font=FONT, padx=5, pady=5)
self.text_widget.place(relheight=0.745, relwidth=1, rely=0.08)
self.text_widget.configure(cursor="arrow", state=DISABLED)
bottom_label = Label(self.window, bg='#99c9a5', height=80)
bottom_label.place(relwidth=1, rely=0.825)
self.msg_entry = Entry(bottom_label, bg='#edf2ee',
fg='#000000', font=FONT)
self.msg_entry.place(relwidth=0.74, relheight=0.06,
rely=0.008, relx=0.011)
self.msg_entry.focus()
self.msg_entry.bind("<Return>", self._on_enter_pressed)
send_button = Button(bottom_label, text="Enter", font=FONT_BOLD, width=20, bg='#45855b',
command=lambda: self._on_enter_pressed(None))
send_button.place(relx=0.77, rely=0.008, relheight=0.06, relwidth=0.22)
def _on_enter_pressed(self, event):
msg = self.msg_entry.get()
self._insert_message(msg, "You")
def _insert_message(self, msg, sender):
if not msg:
return
self.msg_entry.delete(0, END)
msg1 = f"{sender}: {msg}\n\n"
self.text_widget.configure(state=NORMAL)
self.text_widget.insert(END, msg1)
self.text_widget.configure(state=DISABLED)
msg2 = f"{bot_name}: {get_response(msg)}\n\n"
self.text_widget.configure(state=NORMAL)
self.text_widget.insert(END, msg2)
self.text_widget.configure(state=DISABLED)
self.text_widget.see(END)
if __name__ == "__main__":
app = ChatApplication()
app.run()