-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypehinting.py
143 lines (105 loc) · 3.48 KB
/
typehinting.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
from __future__ import annotations
from typing import TypedDict
from typing import Tuple
from PyQt5 import QtGui, QtWidgets
from PyQt5.QtWidgets import *
from ui_mainWindow import Ui_mainWindow as mainWindow
from ui_editPersonWindow import Ui_editPersonWindow as editPersonWindow
from ui_addRelationWindow import Ui_addRelationWindow as addRelationWindow
from ui_worldBuildingWindow import Ui_worldBuildingWindow as worldBuildingWindow
from ui_optionsWindow import Ui_optionsWindow as optionsWindow
from ui_infoWindow import Ui_creditsWindow as creditsWindow
characterRelations = Tuple[int, int]
character = Tuple[int, str, int, int, int, str, int, str, str]
worldItem = Tuple[str, int]
class dataLayout(TypedDict):
"""Character and World data layout"""
characters: list[character];
world: list[worldItem];
class fixesLayout(TypedDict):
font: QtGui.QFont;
palette: QtGui.QPalette
class configLayout(TypedDict):
"""Config settings layout"""
theme: str;
lang: int;
longestRelation: int;
class miscFunctions():
def __init__(self) -> None:
pass
def resource_path(self, relative_path: str) -> str:
pass
def showDetails(this) -> None:
pass
def searchBar(this, searchBar: QLineEdit, listToSearch: QListWidget) -> None:
pass
def unlockWorldBuildingEditRemoveBtns(this) -> None:
pass
def unlockWorldBuildingAcceptBtn(this):
pass
def unlockEditRemoveCharacterBtns(this) -> None:
pass
def unlockSubmitCharacterBtn(this) -> None:
pass
def unlockEditRemoveRelationBtn(this) -> None:
pass
def unlockAcceptRelationBtn(this) -> None:
pass
def populateList(this, table: QListWidget, type: str) -> None:
pass
def relationConversion(this, item: int | str) -> str | int:
pass
def maxRelationLength(this) -> int:
pass
def titleConversion(this, item: int | str | None) -> str | int:
pass
def relationTupleConversion(this, relationship: tuple) -> tuple | None:
pass
class themeManager():
def __init__(self) -> None:
self.functions = miscFunctions();
def setTheme(this, self: startProgram, window: str, ) -> None:
pass
class startProgram():
def __init__(self) -> None:
# Main Window
self.mainWindow = QtWidgets.QMainWindow();
self.ui = mainWindow();
self.ui.setupUi();
# Credits Window
self.creditsWindow = QtWidgets.QWidget();
self.creditsUI = creditsWindow();
self.creditsUI.setupUi();
# Options Window (Disabled)
self.optionsWindow = QtWidgets.QWidget();
self.optionsUI = optionsWindow();
self.optionsUI.setupUi();
# Edit Character Window
self.editCharacterWindow = QtWidgets.QWidget();
self.characterUI = editPersonWindow();
self.characterUI.setupUi();
# Add Relation Window
self.addRelationWindow = QtWidgets.QWidget();
self.addRelationUI = addRelationWindow();
self.addRelationUI.setupUi();
# World Building Window
self.worldBuildingWindow = QtWidgets.QWidget();
self.worldBuildingUI = worldBuildingWindow();
self.worldBuildingUI.setupUi();
self.settings: configLayout
self.settings = {
"theme": "Dark",
"lang": 0,
}
self.data: dataLayout;
self.data = {
"characters": [],
"world": []
};
self.fontType = QtGui.QFont,
self.themeManager = themeManager()
self.deathIcon = QtGui.QIcon;
self.longestRelation: int;
self.longestRelation = 10;
self._characterRelations: list[characterRelations];
self._characterRelations = [];