-
Notifications
You must be signed in to change notification settings - Fork 3
/
resources.py
53 lines (45 loc) · 1.95 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
# -*- coding: utf-8 -*-
# Resource object code
#
# Created: Tue Dec 2 22:45:25 2008
# by: The Resource Compiler for PyQt (Qt v4.3.4)
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore
qt_resource_data = "\
\x00\x00\x01\x1b\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x00\xcd\x49\x44\x41\x54\x38\x8d\xb5\
\x94\xcb\x11\xc4\x20\x0c\x43\x2d\x66\x8b\xd8\x52\xb6\xff\xc6\x94\
\x03\x7f\x62\xc7\x86\xc9\xea\x48\xe2\x37\x42\x08\x40\x52\xfe\xa1\
\xb4\x3b\x00\x80\x00\x5c\x37\x5b\xe0\x0c\xa4\x88\x50\x3c\x78\x18\
\xdc\xa1\x55\x94\xf4\x4b\x26\x1c\x91\x8c\xef\xd0\xe9\xab\x90\xc4\
\xba\xea\x3a\xc6\xf7\x09\x6a\xeb\x63\x02\x5b\x86\x67\xad\x51\x1d\
\xef\x41\x59\x76\xb5\x30\xd6\x8c\x01\x90\xa4\x00\x08\x82\xdb\xe4\
\x94\xf5\xe4\xb8\x42\xdf\x90\x15\xc5\x7b\xe0\x29\x82\x23\xd3\xf3\
\xa5\x49\x7b\x50\x08\x29\x92\xd3\x7a\xde\xd5\xe8\xf8\xb4\x59\xaa\
\x7a\x8f\x55\xe8\xec\x6a\x3c\xd8\xde\x1c\x0f\xac\x89\x99\x6d\x35\
\x45\xa9\x6a\x10\x1c\x90\xe5\x5a\x07\x8f\x77\x83\x79\xd8\x72\xa7\
\x3d\x40\x3a\x38\x6f\x1d\x00\xa8\xe5\xee\x01\xdb\x7f\xe5\x10\x1a\
\x62\x1c\xd0\x1e\x73\x0f\x78\x73\xac\x0d\xd4\xb5\xd2\xf3\xad\xeb\
\x18\x7a\xe8\x4f\x74\x01\x3a\xb9\x73\x99\x57\x39\xda\x4f\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
"
qt_resource_name = "\
\x00\x0d\
\x03\x8a\xaf\x07\
\x00\x71\
\x00\x67\x00\x73\x00\x41\x00\x66\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct = "\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
"
def qInitResources():
QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()