-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path__init__.py
47 lines (36 loc) · 1.11 KB
/
__init__.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
import sys
from typing import Any, Dict, Tuple, Callable
from PyQt5.QtWidgets import QApplication, QMainWindow # type: ignore
from .screens import Router
from .screens.login import Login
from .screens.create_account import CreateAccount
from .screens.connect_to_server import ConnectToServer
from .screens.main import Main
def setup_route_function(window: QMainWindow, screen_object: Any) -> None:
"""
Faciliate switching Windows for Router
Parameters
----------
window: QMainWindow
MainWindow of Qt Application
screen_object: Any
Screen Object that can setup a MainWindow
"""
screen_object.setupUi(window)
window.show()
routes: Dict[str, Any] = {
"/": ConnectToServer,
"/login": Login,
"/create/account": CreateAccount,
"/main": Main,
}
app = QApplication(sys.argv)
main_window = QMainWindow()
first_route: Tuple[str, Callable[..., Any], QMainWindow] = (
"/",
ConnectToServer,
main_window,
)
router: Router = Router(routes, setup_route_function, first_route)
setup_route_function(main_window, ConnectToServer(router))
sys.exit(app.exec_())