flatcam/FlatCAM.py

69 lines
1.7 KiB
Python
Raw Normal View History

2019-06-09 14:39:42 +00:00
import sys
import os
2019-01-03 19:25:08 +00:00
from PyQt5 import QtWidgets, QtGui
from PyQt5.QtCore import QSettings, Qt
2019-01-03 19:25:08 +00:00
from FlatCAMApp import App
from flatcamGUI import VisPyPatches
from multiprocessing import freeze_support
# import copyreg
# import types
2019-10-07 15:52:05 +00:00
import qdarkstyle
2019-01-03 19:25:08 +00:00
if sys.platform == "win32":
# cx_freeze 'module win32' workaround
pass
2019-01-03 19:25:08 +00:00
2019-10-07 15:52:05 +00:00
os.environ['QT_API'] = 'pyqt5'
2019-06-09 14:39:42 +00:00
2019-01-03 19:25:08 +00:00
def debug_trace():
"""
Set a tracepoint in the Python debugger that works with Qt
:return: None
"""
from PyQt5.QtCore import pyqtRemoveInputHook
2019-06-09 14:39:42 +00:00
# from pdb import set_trace
2019-01-03 19:25:08 +00:00
pyqtRemoveInputHook()
2019-06-09 14:39:42 +00:00
# set_trace()
2019-01-03 19:25:08 +00:00
if __name__ == '__main__':
2019-06-09 14:39:42 +00:00
# All X11 calling should be thread safe otherwise we have strange issues
# QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_X11InitThreads)
# NOTE: Never talk to the GUI from threads! This is why I commented the above.
2019-01-03 19:25:08 +00:00
freeze_support()
debug_trace()
VisPyPatches.apply_patches()
# apply High DPI support
settings = QSettings("Open Source", "FlatCAM")
if settings.contains("hdpi"):
hdpi_support = settings.value('hdpi', type=int)
else:
hdpi_support = 0
if hdpi_support == 2:
os.environ["QT_AUTO_SCREEN_SCALE_FACTOR"] = "1"
else:
os.environ["QT_AUTO_SCREEN_SCALE_FACTOR"] = "0"
2019-01-03 19:25:08 +00:00
app = QtWidgets.QApplication(sys.argv)
2019-10-07 15:52:05 +00:00
app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5())
# apply style
settings = QSettings("Open Source", "FlatCAM")
if settings.contains("style"):
style = settings.value('style', type=str)
app.setStyle(style)
if hdpi_support == 2:
app.setAttribute(Qt.AA_EnableHighDpiScaling, True)
else:
app.setAttribute(Qt.AA_EnableHighDpiScaling, False)
2019-01-03 19:25:08 +00:00
fc = App()
2019-01-03 19:25:08 +00:00
sys.exit(app.exec_())