-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintDialog_View.py
59 lines (47 loc) · 1.29 KB
/
printDialog_View.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
from resources.teacherUIPY.print_Dialog import Ui_Dialog
from PyQt5.QtWidgets import QDialog, QApplication
class printDialog_view(QDialog, Ui_Dialog):
def __init__(self):
super(printDialog_view, self).__init__()
self.setupUi(self)
def sortByModule(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
def sortBySessionType(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
def sortByStudent(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
def sortByStartTime(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
def sortByEndTime(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
def toPrint(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
def toSave(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
Dialog = printDialog_view()
Dialog.show()
sys.exit(app.exec_())