-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathHomeView.py
82 lines (68 loc) · 2.24 KB
/
HomeView.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
import tkinter as tk
from tkinter import ttk
from views.View import View
"""
View associated with HomeController. It will be responsible for program's
main screen view.
"""
class HomeView(tk.Tk, View):
#-----------------------------------------------------------------------
# Constants
#-----------------------------------------------------------------------
PAD = 10
BTN_CAPTION = [
"Open Customers DB",
"Show customers with TreeView",
"Add customer",
"Exit"
]
#-----------------------------------------------------------------------
# Constructor
#-----------------------------------------------------------------------
"""
@param controller Controller of this view
"""
def __init__(self, controller):
super().__init__()
self.title("Customers Manager")
self.homeController = controller
self._make_mainFrame()
self._make_title()
self._make_options()
#-----------------------------------------------------------------------
# Methods
#-----------------------------------------------------------------------
"""
Creates view's frame.
"""
def _make_mainFrame(self):
self.mainFrame = ttk.Frame(self)
self.mainFrame.pack(padx=self.PAD, pady=self.PAD)
"""
Sets view's title.
"""
def _make_title(self):
title = ttk.Label(self.mainFrame, text="Customers Manager", font=("Helvetica", 20))
title.pack(padx=self.PAD, pady=self.PAD)
"""
Creates view's options.
"""
def _make_options(self):
frame_btn = ttk.Frame(self.mainFrame)
frame_btn.pack(fill="x")
for caption in self.BTN_CAPTION:
if caption == "Exit":
btn = ttk.Button(frame_btn, text=caption, command=self.destroy)
else:
btn = ttk.Button(frame_btn, text=caption, command=lambda txt=caption: self.homeController.btnClicked(txt))
btn.pack(fill="x")
"""
@Overrite
"""
def main(self):
self.mainloop()
"""
@Overrite
"""
def close(self):
return