-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.py
74 lines (64 loc) · 2.35 KB
/
resources.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
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.9.5)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x00\xab\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x24\x00\x00\x00\x24\x08\x06\x00\x00\x00\xe1\x00\x98\x98\
\x00\x00\x00\x72\x49\x44\x41\x54\x78\x01\xec\xce\xb1\x09\x00\x20\
\x0c\x05\xd1\x14\x6e\xe7\x28\x0e\xe1\x50\x0e\x62\xe1\x40\xf1\x77\
\xf6\xc1\x20\xc2\x1d\x5c\xff\x8c\x1e\x46\x54\x74\xd7\x4b\xfb\xa5\
\x87\xae\x16\xac\x69\x4f\xba\x59\xa0\x95\x08\x9a\x16\xc8\xcf\xd7\
\xf2\x33\x20\x40\x80\xbe\x07\x01\x02\x04\x08\x10\x20\x40\x7b\x9f\
\x69\xd8\x84\x3d\x4c\x8e\x83\xe6\xd3\xd0\x41\xe1\xe4\x38\x88\x07\
\x88\xcb\x81\xf8\x3e\x15\x1d\xf2\x1e\x88\xbb\xc1\x5d\xac\x01\x02\
\xa3\x60\x14\x8c\x02\x00\x28\x3c\xf1\x71\x89\xcd\x12\xe3\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
"
qt_resource_name = b"\
\x00\x07\
\x07\x3b\xe0\xb3\
\x00\x70\
\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\
\x00\x09\
\x06\xb5\xb4\xaa\
\x00\x67\
\x00\x6f\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x78\x00\x79\x00\x7a\
\x00\x08\
\x0a\x61\x5a\xa7\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\
\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x6f\xa8\x2e\x53\xb0\
"
qt_version = QtCore.qVersion().split('.')
if qt_version < ['5', '8', '0']:
rcc_version = 1
qt_resource_struct = qt_resource_struct_v1
else:
rcc_version = 2
qt_resource_struct = qt_resource_struct_v2
def qInitResources():
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()