2023-11-08 00:13:12 +08:00
|
|
|
|
import ctypes
|
2023-01-11 13:04:19 +08:00
|
|
|
|
import sys
|
2023-11-07 22:36:52 +08:00
|
|
|
|
import time
|
2023-03-31 11:15:44 +08:00
|
|
|
|
|
|
|
|
|
from PyQt5.QtWidgets import *
|
|
|
|
|
|
2023-10-29 23:15:46 +08:00
|
|
|
|
import app.DataBase.data as DB
|
2023-11-15 20:54:27 +08:00
|
|
|
|
from app.Ui import decrypt, mainview
|
2023-11-08 00:13:12 +08:00
|
|
|
|
|
|
|
|
|
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("WeChatReport")
|
2023-01-11 13:04:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ViewController:
|
2023-04-02 21:23:20 +08:00
|
|
|
|
def __init__(self):
|
|
|
|
|
self.viewMainWIn = None
|
|
|
|
|
self.viewDecrypt = None
|
|
|
|
|
|
2023-01-11 13:04:19 +08:00
|
|
|
|
def loadDecryptView(self):
|
|
|
|
|
"""
|
|
|
|
|
登录界面
|
|
|
|
|
:return:
|
|
|
|
|
"""
|
2023-10-29 23:15:46 +08:00
|
|
|
|
if DB.is_db_exist():
|
|
|
|
|
self.loadMainWinView()
|
|
|
|
|
else:
|
|
|
|
|
self.viewDecrypt = decrypt.DecryptControl() # 需要将view login设为成员变量
|
|
|
|
|
self.viewDecrypt.DecryptSignal.connect(self.loadMainWinView)
|
|
|
|
|
self.viewDecrypt.show()
|
|
|
|
|
self.viewDecrypt.db_exist()
|
2023-01-11 13:04:19 +08:00
|
|
|
|
|
2023-11-12 21:51:33 +08:00
|
|
|
|
def loadPCDecryptView(self):
|
2023-01-11 13:04:19 +08:00
|
|
|
|
"""
|
2023-11-12 21:51:33 +08:00
|
|
|
|
登录界面
|
2023-01-11 13:04:19 +08:00
|
|
|
|
:return:
|
|
|
|
|
"""
|
2023-11-12 21:51:33 +08:00
|
|
|
|
self.viewDecrypt = pc_decrypt.DecryptControl()
|
|
|
|
|
self.viewDecrypt.DecryptSignal.connect(self.loadMainWinView)
|
|
|
|
|
self.viewDecrypt.show()
|
2023-01-11 13:04:19 +08:00
|
|
|
|
|
2023-10-29 23:15:46 +08:00
|
|
|
|
def loadMainWinView(self, username=None):
|
2023-01-11 13:04:19 +08:00
|
|
|
|
"""
|
|
|
|
|
聊天界面
|
|
|
|
|
:param username: 账号
|
|
|
|
|
:return:
|
|
|
|
|
"""
|
|
|
|
|
username = ''
|
2023-11-07 22:36:52 +08:00
|
|
|
|
start = time.time()
|
2023-01-11 13:04:19 +08:00
|
|
|
|
self.viewMainWIn = mainview.MainWinController(username=username)
|
|
|
|
|
self.viewMainWIn.setWindowTitle("Chat")
|
|
|
|
|
# print(username)
|
|
|
|
|
self.viewMainWIn.username = username
|
|
|
|
|
# self.viewMainWIn.exitSignal.connect(self.loadDecryptView) # 不需要回到登录界面可以省略
|
|
|
|
|
self.viewMainWIn.show()
|
2023-11-07 22:36:52 +08:00
|
|
|
|
end = time.time()
|
|
|
|
|
print('ok', end - start)
|
2023-01-11 13:04:19 +08:00
|
|
|
|
# self.viewMainWIn.signUp()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
|
view = ViewController()
|
2023-11-12 21:58:11 +08:00
|
|
|
|
# view.loadPCDecryptView()
|
|
|
|
|
view.loadDecryptView() # 进入登录界面,如果view login不是成员变量,则离开作用域后失效。
|
2023-05-21 00:19:25 +08:00
|
|
|
|
# view.loadMainWinView('102')
|
2023-01-11 13:04:19 +08:00
|
|
|
|
sys.exit(app.exec_())
|