-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgcft.py
executable file
·95 lines (79 loc) · 3.96 KB
/
gcft.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env python3
import sys
import traceback
from gcft_ui import qt_init
from qtpy.QtCore import Qt, QTimer
from qtpy.QtWidgets import QApplication, QMessageBox
from qtpy import QT_VERSION
from gcft_ui.main_window import GCFTWindow
def signal_handler(sig, frame):
print("Interrupt")
sys.exit(0)
# Allow keyboard interrupts on the command line to instantly close the program.
import signal
signal.signal(signal.SIGINT, signal_handler)
try:
from sys import _MEIPASS # pyright: ignore [reportAttributeAccessIssue]
except ImportError:
# Setting the app user model ID is necessary for Windows to display a custom taskbar icon when running from source.
import ctypes
app_id = "LagoLunatic.GameCubeFileTools"
try:
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(app_id)
except AttributeError:
# Versions of Windows before Windows 7 don't support SetCurrentProcessExplicitAppUserModelID, so just swallow the error.
pass
def get_dark_mode_palette(app: QApplication):
from qtpy.QtGui import QPalette, QColor
pal = app.palette()
pal.setColor(QPalette.ColorRole.Window, QColor("#353535"))
pal.setColor(QPalette.ColorRole.WindowText, QColor("#D9D9D9"))
pal.setColor(QPalette.ColorRole.Base, QColor("#2A2A2A"))
pal.setColor(QPalette.ColorRole.AlternateBase, QColor("#424242"))
pal.setColor(QPalette.ColorRole.ToolTipBase, QColor("#353535"))
pal.setColor(QPalette.ColorRole.ToolTipText, QColor("#D9D9D9"))
pal.setColor(QPalette.ColorRole.Text, QColor("#D9D9D9"))
pal.setColor(QPalette.ColorRole.Dark, QColor("#232323"))
pal.setColor(QPalette.ColorRole.Shadow, QColor("#141414"))
pal.setColor(QPalette.ColorRole.Button, QColor("#353535"))
pal.setColor(QPalette.ColorRole.ButtonText, QColor("#D9D9D9"))
pal.setColor(QPalette.ColorRole.BrightText, QColor("#D90000"))
pal.setColor(QPalette.ColorRole.Link, QColor("#2A82DA"))
pal.setColor(QPalette.ColorRole.Highlight, QColor("#2A82DA"))
pal.setColor(QPalette.ColorRole.HighlightedText, QColor("#D9D9D9"))
placeholder_color = QColor("#D9D9D9")
placeholder_color.setAlpha(128)
pal.setColor(QPalette.ColorRole.PlaceholderText, placeholder_color)
pal.setColor(QPalette.ColorGroup.Disabled, QPalette.ColorRole.WindowText, QColor("#7F7F7F"))
pal.setColor(QPalette.ColorGroup.Disabled, QPalette.ColorRole.Text, QColor("#7F7F7F"))
pal.setColor(QPalette.ColorGroup.Disabled, QPalette.ColorRole.ButtonText, QColor("#7F7F7F"))
pal.setColor(QPalette.ColorGroup.Disabled, QPalette.ColorRole.Highlight, QColor("#505050"))
pal.setColor(QPalette.ColorGroup.Disabled, QPalette.ColorRole.HighlightedText, QColor("#7F7F7F"))
return pal
if __name__ == "__main__":
qApp = QApplication(sys.argv)
# Use the Qt Fusion style on all platforms for consistency to avoid parts of the UI breaking on certain OSes.
qApp.setStyle("Fusion")
qt_version_tuple = tuple(int(num) for num in QT_VERSION.split("."))
if qt_version_tuple >= (6, 5, 0) and qApp.styleHints().colorScheme() == Qt.ColorScheme.Dark:
qApp.setPalette(get_dark_mode_palette(qApp))
def show_unhandled_exception(excepttype, exception, tb):
sys.__excepthook__(excepttype, exception, tb)
error_message_title = "Encountered an unhandled error"
stack_trace = traceback.format_exception(excepttype, exception, tb)
error_message = "GCFT encountered an unhandled error.\n"
error_message += "Please report this issue with a screenshot of this message.\n\n"
error_message += f"{exception}\n\n"
error_message += "\n".join(stack_trace)
QMessageBox.critical(None, error_message_title, error_message)
sys.excepthook = show_unhandled_exception
# Have a timer updated frequently so keyboard interrupts always work.
# 499 milliseconds seems to be the maximum value that works here, but use 100 to be safe.
timer = QTimer()
timer.start(100)
timer.timeout.connect(lambda: None)
window = GCFTWindow()
if len(sys.argv) == 2:
file_path = sys.argv[1]
window.open_file_by_path(file_path)
sys.exit(qApp.exec())