2018-09-18 18:53:34 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2018-09-27 16:45:55 +08:00
|
|
|
主函数入口.
|
2018-09-18 18:53:34 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
"""
|
|
|
|
Created on 2018-09-16 <br>
|
|
|
|
description: $description$ <br>
|
|
|
|
author: 625781186@qq.com <br>
|
|
|
|
site: https://github.com/625781186 <br>
|
|
|
|
更多经典例子:https://github.com/892768447/PyQt <br>
|
|
|
|
课件: https://github.com/625781186/WoHowLearn_PyQt5 <br>
|
|
|
|
视频教程: https://space.bilibili.com/1863103/#/ <br>
|
|
|
|
"""
|
2018-09-27 16:45:55 +08:00
|
|
|
import sys
|
2018-09-23 17:04:51 +08:00
|
|
|
|
2018-09-18 18:53:34 +08:00
|
|
|
|
|
|
|
from PyQt5 import QtGui, QtWidgets, QtCore
|
|
|
|
from PyQt5.QtCore import *
|
|
|
|
from PyQt5.QtGui import *
|
|
|
|
from PyQt5.QtWidgets import *
|
|
|
|
|
|
|
|
from PyQt5.QtWidgets import QMainWindow
|
|
|
|
|
|
|
|
try:
|
|
|
|
from Ui_main import Ui_MainWindow
|
|
|
|
except:
|
|
|
|
from .Ui_main import Ui_MainWindow
|
|
|
|
|
|
|
|
from PluginManager.PluginManager import PluginManager
|
|
|
|
|
|
|
|
class MainWindow(QMainWindow, Ui_MainWindow):
|
|
|
|
"""
|
|
|
|
Class documentation goes here.
|
|
|
|
"""
|
|
|
|
def __init__(self, parent=None):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
super(MainWindow, self).__init__(parent)
|
|
|
|
self.setupUi(self)
|
|
|
|
self.pluginManager = PluginManager(self) #初始化插件管理器
|
2018-09-23 17:04:51 +08:00
|
|
|
|
|
|
|
@pyqtSlot()
|
|
|
|
def on_pushButton_clicked(self):
|
|
|
|
"""
|
|
|
|
Slot documentation goes here.
|
|
|
|
"""
|
2018-09-24 14:51:53 +08:00
|
|
|
print(sys.path)
|
2018-09-23 17:04:51 +08:00
|
|
|
pass
|
2018-09-27 16:45:55 +08:00
|
|
|
def closeEvent(self, e):
|
|
|
|
self.pluginManager.dia.close()
|
2018-09-18 18:53:34 +08:00
|
|
|
if __name__ == "__main__":
|
2018-09-23 17:04:51 +08:00
|
|
|
|
2018-09-18 18:53:34 +08:00
|
|
|
app = QtWidgets.QApplication(sys.argv)
|
|
|
|
app.setStyle(QStyleFactory.create("Fusion"))
|
|
|
|
|
2018-09-27 16:45:55 +08:00
|
|
|
def excepthook(type, value, trace):
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except :
|
|
|
|
pass
|
|
|
|
sys.__excepthook__(type, value, trace)
|
2018-09-23 17:04:51 +08:00
|
|
|
|
2018-09-27 16:45:55 +08:00
|
|
|
sys.excepthook = excepthook
|
2018-09-23 17:04:51 +08:00
|
|
|
|
|
|
|
ui = MainWindow()
|
|
|
|
|
|
|
|
ui.show()
|
|
|
|
sys.exit(app.exec_())
|
|
|
|
|
2018-09-18 18:53:34 +08:00
|
|
|
# 自定义CSS样式
|
|
|
|
# from BasePack.CommonHelper import CommonHelper
|
|
|
|
# styleFile = 'BasePack/style.css'
|
|
|
|
# qssStyle = CommonHelper.readQss( styleFile )
|
|
|
|
# framelessWindow.setStyleSheet( qssStyle )
|
|
|
|
|
|
|
|
# If you want to use this style, please pip install qdarkstyle.
|
|
|
|
# import qdarkstyle
|
|
|
|
# app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5())
|