-
Notifications
You must be signed in to change notification settings - Fork 148
/
ui.py
56 lines (40 loc) · 1.39 KB
/
ui.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
from ui.login_view import LoginView
from ui.todos_view import TodosView
from ui.create_user_view import CreateUserView
class UI:
"""Sovelluksen käyttöliittymästä vastaava luokka."""
def __init__(self, root):
"""Luokan konstruktori. Luo uuden käyttöliittymästä vastaavan luokan.
Args:
root:
TKinter-elementti, jonka sisään käyttöliittymä alustetaan.
"""
self._root = root
self._current_view = None
def start(self):
"""Käynnistää käyttöliittymän."""
self._show_login_view()
def _hide_current_view(self):
if self._current_view:
self._current_view.destroy()
self._current_view = None
def _show_login_view(self):
self._hide_current_view()
self._current_view = LoginView(
self._root,
self._show_todos_view,
self._show_create_user_view
)
self._current_view.pack()
def _show_todos_view(self):
self._hide_current_view()
self._current_view = TodosView(self._root, self._show_login_view)
self._current_view.pack()
def _show_create_user_view(self):
self._hide_current_view()
self._current_view = CreateUserView(
self._root,
self._show_todos_view,
self._show_login_view
)
self._current_view.pack()