-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialog.py
29 lines (21 loc) · 857 Bytes
/
dialog.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
from PyQt6.QtWidgets import QDialog
from login_gui import Ui_Dialog as login_dialog
from export_logs_gui import Ui_Dialog as export_logs_dialog
from export_oee_gui import Ui_Dialog as export_oee_dialog
from msg_box_gui import Ui_Dialog as message_dialog
class MessageBox(QDialog, message_dialog):
def __init__(self, parent=None):
QDialog.__init__(self, parent)
self.setupUi(self)
class ExportLogsDialog(QDialog, export_logs_dialog):
def __init__(self, parent=None):
QDialog.__init__(self, parent)
self.setupUi(self)
class ExportOeeDialog(QDialog, export_oee_dialog):
def __init__(self, parent=None):
QDialog.__init__(self, parent)
self.setupUi(self)
class Dialog(QDialog, login_dialog):
def __init__(self, parent=None):
QDialog.__init__(self, parent)
self.setupUi(self)