orGUI 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. orGUI-1.0.1.dist-info/LICENSE +21 -0
  2. orGUI-1.0.1.dist-info/METADATA +147 -0
  3. orGUI-1.0.1.dist-info/RECORD +83 -0
  4. orGUI-1.0.1.dist-info/WHEEL +5 -0
  5. orGUI-1.0.1.dist-info/entry_points.txt +2 -0
  6. orGUI-1.0.1.dist-info/top_level.txt +1 -0
  7. orgui/__init__.py +36 -0
  8. orgui/app/ArrayTableDialog.py +433 -0
  9. orgui/app/QReflectionSelector.py +538 -0
  10. orgui/app/QScanSelector.py +692 -0
  11. orgui/app/QUBCalculator.py +1210 -0
  12. orgui/app/__init__.py +36 -0
  13. orgui/app/database.py +487 -0
  14. orgui/app/orGUI.py +2613 -0
  15. orgui/app/qutils.py +51 -0
  16. orgui/backend/__init__.py +32 -0
  17. orgui/backend/backends.py +157 -0
  18. orgui/backend/beamline/ID31DiffractLinTilt.py +77 -0
  19. orgui/backend/beamline/P212_tools.py +577 -0
  20. orgui/backend/beamline/__init__.py +36 -0
  21. orgui/backend/beamline/fio_reader.py +110 -0
  22. orgui/backend/beamline/id31_tools.py +651 -0
  23. orgui/backend/scans.py +95 -0
  24. orgui/backend/udefaults.py +163 -0
  25. orgui/backend/universalScanLoader.py +105 -0
  26. orgui/datautils/__init__.py +32 -0
  27. orgui/datautils/util.py +705 -0
  28. orgui/datautils/xrayutils/CTRcalc.py +3022 -0
  29. orgui/datautils/xrayutils/CTRopt.py +623 -0
  30. orgui/datautils/xrayutils/CTRplotutil.py +904 -0
  31. orgui/datautils/xrayutils/DetectorCalibration.py +685 -0
  32. orgui/datautils/xrayutils/HKLVlieg.py +1360 -0
  33. orgui/datautils/xrayutils/ReciprocalNavigation.py +401 -0
  34. orgui/datautils/xrayutils/_CTRcalc_accel.py +181 -0
  35. orgui/datautils/xrayutils/__init__.py +46 -0
  36. orgui/datautils/xrayutils/element_data.py +213 -0
  37. orgui/datautils/xrayutils/test/__init__.py +57 -0
  38. orgui/datautils/xrayutils/test/test_CTRcalc.py +152 -0
  39. orgui/datautils/xrayutils/test/test_DetectorCalibration.py +336 -0
  40. orgui/datautils/xrayutils/test/test_HKLcalc.py +88 -0
  41. orgui/datautils/xrayutils/unitcells/Fe3O4(100).bul +59 -0
  42. orgui/datautils/xrayutils/unitcells/Pt100.bul +7 -0
  43. orgui/datautils/xrayutils/unitcells/Pt100_small.bul +5 -0
  44. orgui/datautils/xrayutils/unitcells/Pt110.bul +5 -0
  45. orgui/datautils/xrayutils/unitcells/Pt111.bul +6 -0
  46. orgui/datautils/xrayutils/unitcells/Pt310.bul +13 -0
  47. orgui/datautils/xrayutils/unitcells/Pt3O4(100).bul +19 -0
  48. orgui/datautils/xrayutils/unitcells/PtO(001).bul +9 -0
  49. orgui/datautils/xrayutils/unitcells/PtO(010).bul +9 -0
  50. orgui/datautils/xrayutils/unitcells/PtO(100).bul +9 -0
  51. orgui/datautils/xrayutils/unitcells/__init__.py +67 -0
  52. orgui/datautils/xrayutils/unitcells/a-PtO2(0001).bul +6 -0
  53. orgui/main.py +101 -0
  54. orgui/resources/__init__.py +40 -0
  55. orgui/resources/icons/alpha.png +0 -0
  56. orgui/resources/icons/alpha.svg +67 -0
  57. orgui/resources/icons/diffractometer_v3.png +0 -0
  58. orgui/resources/icons/disable-image.png +0 -0
  59. orgui/resources/icons/disable-image.svg +68 -0
  60. orgui/resources/icons/document-nx-open.png +0 -0
  61. orgui/resources/icons/document-nx-open.svg +152 -0
  62. orgui/resources/icons/document-nx-save.png +0 -0
  63. orgui/resources/icons/document-nx-save.svg +73 -0
  64. orgui/resources/icons/logo.png +0 -0
  65. orgui/resources/icons/logo.svg +808 -0
  66. orgui/resources/icons/max_image.png +0 -0
  67. orgui/resources/icons/max_image.svg +77 -0
  68. orgui/resources/icons/max_image2.png +0 -0
  69. orgui/resources/icons/max_image2.svg +83 -0
  70. orgui/resources/icons/search-image.png +0 -0
  71. orgui/resources/icons/search-image.svg +94 -0
  72. orgui/resources/icons/search-reflection.png +0 -0
  73. orgui/resources/icons/search-reflection.svg +126 -0
  74. orgui/resources/icons/search.png +0 -0
  75. orgui/resources/icons/search.svg +91 -0
  76. orgui/resources/icons/select-image.png +0 -0
  77. orgui/resources/icons/select-image.svg +60 -0
  78. orgui/resources/icons/set-reflection.png +0 -0
  79. orgui/resources/icons/set-reflection.svg +91 -0
  80. orgui/resources/icons/sum_image.png +0 -0
  81. orgui/resources/icons/sum_image.svg +63 -0
  82. orgui/resources/icons/sum_image2.png +0 -0
  83. orgui/resources/icons/sum_image2.svg +75 -0
Binary file
@@ -0,0 +1,77 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ id="svg16"
11
+ enable-background="new 0 0 32 32"
12
+ version="1.1"
13
+ viewBox="0 0 32 32"
14
+ xml:space="preserve"
15
+ sodipodi:docname="max_image.svg"
16
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
17
+ inkscape:export-filename="I:\icons\max.png"
18
+ inkscape:export-xdpi="96"
19
+ inkscape:export-ydpi="96"><defs
20
+ id="defs10" /><sodipodi:namedview
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1"
24
+ objecttolerance="10"
25
+ gridtolerance="10"
26
+ guidetolerance="10"
27
+ inkscape:pageopacity="0"
28
+ inkscape:pageshadow="2"
29
+ inkscape:window-width="3840"
30
+ inkscape:window-height="2066"
31
+ id="namedview8"
32
+ showgrid="false"
33
+ inkscape:zoom="7.375"
34
+ inkscape:cx="55.164195"
35
+ inkscape:cy="8.5298125"
36
+ inkscape:window-x="-11"
37
+ inkscape:window-y="-11"
38
+ inkscape:window-maximized="1"
39
+ inkscape:current-layer="svg16" /><metadata
40
+ id="metadata22"><rdf:RDF><cc:Work
41
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
42
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
43
+ id="g844"
44
+ transform="matrix(0.67772769,0,0,0.67772769,9.6579343,-0.36064224)"><rect
45
+ y="3.9131589"
46
+ x="14.07929"
47
+ height="10.347986"
48
+ width="10.347986"
49
+ id="rect819"
50
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.38739291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><rect
51
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.38739291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
52
+ id="rect821"
53
+ width="10.347986"
54
+ height="10.347986"
55
+ x="16.758211"
56
+ y="6.5395517" /><rect
57
+ y="9.1659431"
58
+ x="19.43713"
59
+ height="10.347986"
60
+ width="10.347986"
61
+ id="rect823"
62
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.38739291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></g><path
63
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f7941e;stroke-width:1.87799931;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
64
+ d="m -87.263382,14.697171 -11.453455,0.04563 6.479643,7.164113 -7.209745,7.939845 h 13.461233"
65
+ id="path817"
66
+ inkscape:connector-curvature="0" /><text
67
+ xml:space="preserve"
68
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.63454247px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ec8407;fill-opacity:1;stroke:#ec8407;stroke-width:0.543;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
69
+ x="15.500103"
70
+ y="26.028574"
71
+ id="text848"><tspan
72
+ sodipodi:role="line"
73
+ id="tspan846"
74
+ x="15.500103"
75
+ y="26.028574"
76
+ style="fill:#ec8407;fill-opacity:1;stroke-width:0.543;stroke-miterlimit:4;stroke-dasharray:none">Max</tspan></text>
77
+ </svg>
Binary file
@@ -0,0 +1,83 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ id="svg16"
11
+ enable-background="new 0 0 32 32"
12
+ version="1.1"
13
+ viewBox="0 0 32 32"
14
+ xml:space="preserve"
15
+ sodipodi:docname="max_image2.svg"
16
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
17
+ inkscape:export-filename="I:\icons\max_2.png"
18
+ inkscape:export-xdpi="96"
19
+ inkscape:export-ydpi="96"><defs
20
+ id="defs10" /><sodipodi:namedview
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1"
24
+ objecttolerance="10"
25
+ gridtolerance="10"
26
+ guidetolerance="10"
27
+ inkscape:pageopacity="0"
28
+ inkscape:pageshadow="2"
29
+ inkscape:window-width="3840"
30
+ inkscape:window-height="2066"
31
+ id="namedview8"
32
+ showgrid="false"
33
+ inkscape:zoom="10.429825"
34
+ inkscape:cx="4.2226557"
35
+ inkscape:cy="20.255211"
36
+ inkscape:window-x="-11"
37
+ inkscape:window-y="-11"
38
+ inkscape:window-maximized="1"
39
+ inkscape:current-layer="svg16"
40
+ inkscape:snap-global="false" /><metadata
41
+ id="metadata22"><rdf:RDF><cc:Work
42
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
43
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><text
44
+ xml:space="preserve"
45
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.63454247px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ec8407;fill-opacity:1;stroke:#ec8407;stroke-width:0.543;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
46
+ x="15.500103"
47
+ y="26.028574"
48
+ id="text848"><tspan
49
+ sodipodi:role="line"
50
+ id="tspan846"
51
+ x="15.500103"
52
+ y="26.028574"
53
+ style="fill:#ec8407;fill-opacity:1;stroke-width:0.543;stroke-miterlimit:4;stroke-dasharray:none">Max</tspan></text>
54
+
55
+ <path
56
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.77995139;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
57
+ id="path850"
58
+ sodipodi:type="arc"
59
+ sodipodi:cx="21.35284"
60
+ sodipodi:cy="5.8710318"
61
+ sodipodi:rx="8.6657171"
62
+ sodipodi:ry="6.1755686"
63
+ sodipodi:start="0.26179939"
64
+ sodipodi:end="2.8797933"
65
+ sodipodi:open="true"
66
+ d="M 29.72328,7.4693865 A 8.6657171,6.1755686 0 0 1 21.35284,12.0466 8.6657171,6.1755686 0 0 1 12.9824,7.4693863" /><path
67
+ d="m 29.72328,-7.6459451 a 8.6657171,6.1755686 0 0 1 -8.37044,4.5772138 8.6657171,6.1755686 0 0 1 -8.37044,-4.577214"
68
+ sodipodi:open="true"
69
+ sodipodi:end="2.8797933"
70
+ sodipodi:start="0.26179939"
71
+ sodipodi:ry="6.1755686"
72
+ sodipodi:rx="8.6657171"
73
+ sodipodi:cy="-9.2442999"
74
+ sodipodi:cx="21.35284"
75
+ sodipodi:type="arc"
76
+ id="path4559"
77
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.77995139;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
78
+ transform="scale(1,-1)" /><circle
79
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.68863994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
80
+ id="path4561"
81
+ cx="21.345697"
82
+ cy="7.6394448"
83
+ r="2.6277163" /></svg>
Binary file
@@ -0,0 +1,94 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ viewBox="0 0 32 32"
5
+ xml:space="preserve"
6
+ id="svg15"
7
+ sodipodi:docname="search-image.svg"
8
+ inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
9
+ inkscape:export-filename="C:\Users\Timo\Documents\Archiv\Studium\repro\orgui\orgui\resources\icons\search-image.png"
10
+ inkscape:export-xdpi="96"
11
+ inkscape:export-ydpi="96"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns:xlink="http://www.w3.org/1999/xlink"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
20
+ id="metadata19"><rdf:RDF><cc:Work
21
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
22
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1"
26
+ objecttolerance="10"
27
+ gridtolerance="10"
28
+ guidetolerance="10"
29
+ inkscape:pageopacity="0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:window-width="3840"
32
+ inkscape:window-height="2066"
33
+ id="namedview17"
34
+ showgrid="false"
35
+ inkscape:zoom="14.75"
36
+ inkscape:cx="-15.59322"
37
+ inkscape:cy="27.525424"
38
+ inkscape:window-x="-11"
39
+ inkscape:window-y="-11"
40
+ inkscape:window-maximized="1"
41
+ inkscape:current-layer="svg15"
42
+ inkscape:pagecheckerboard="0" /><defs
43
+ id="defs5"><linearGradient
44
+ inkscape:collect="always"
45
+ id="linearGradient2333"><stop
46
+ style="stop-color:#ffffff;stop-opacity:1"
47
+ offset="0"
48
+ id="stop2329" /><stop
49
+ style="stop-color:#7f7f7f;stop-opacity:1"
50
+ offset="1"
51
+ id="stop2331" /></linearGradient><filter
52
+ id="a"
53
+ x="-0.14179865"
54
+ y="-0.14627031"
55
+ width="1.2835973"
56
+ height="1.2925406"
57
+ color-interpolation-filters="sRGB"><feGaussianBlur
58
+ stdDeviation="0.9522046"
59
+ id="feGaussianBlur2" /></filter><radialGradient
60
+ inkscape:collect="always"
61
+ xlink:href="#linearGradient2333"
62
+ id="radialGradient2335"
63
+ cx="43.033897"
64
+ cy="18.491524"
65
+ fx="43.033897"
66
+ fy="18.491524"
67
+ r="4.5"
68
+ gradientUnits="userSpaceOnUse"
69
+ gradientTransform="matrix(1.1489362,0,0,1.1489362,-34.583484,-6.2877748)" /></defs><rect
70
+ style="fill:#7f7f7f;fill-opacity:1;stroke:#f7941e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
71
+ id="rect4529"
72
+ width="20.372881"
73
+ height="20.983051"
74
+ x="4.9491525"
75
+ y="4.6440678" /><g
76
+ id="g8933"
77
+ transform="translate(1.4915254,0.40677966)"><circle
78
+ style="fill:#f7941e;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
79
+ id="circle985"
80
+ cx="16.203388"
81
+ cy="16.067795"
82
+ r="7.3220344" /><circle
83
+ style="fill:url(#radialGradient2335);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-opacity:1"
84
+ id="path939"
85
+ cx="16.203388"
86
+ cy="16.067795"
87
+ r="4.5957446" /><rect
88
+ style="fill:#f7941e;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
89
+ id="rect3347"
90
+ width="8.5853729"
91
+ height="2.8617909"
92
+ x="30.415468"
93
+ y="-1.5267752"
94
+ transform="rotate(45)" /></g></svg>
@@ -0,0 +1,126 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ viewBox="0 0 32 32"
5
+ xml:space="preserve"
6
+ id="svg15"
7
+ sodipodi:docname="search-reflection.svg"
8
+ inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
9
+ inkscape:export-filename="search-reflection.png"
10
+ inkscape:export-xdpi="96"
11
+ inkscape:export-ydpi="96"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns:xlink="http://www.w3.org/1999/xlink"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
20
+ id="metadata19"><rdf:RDF><cc:Work
21
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
22
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1"
26
+ objecttolerance="10"
27
+ gridtolerance="10"
28
+ guidetolerance="10"
29
+ inkscape:pageopacity="0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:window-width="3840"
32
+ inkscape:window-height="2066"
33
+ id="namedview17"
34
+ showgrid="false"
35
+ inkscape:zoom="14.75"
36
+ inkscape:cx="38"
37
+ inkscape:cy="11.864407"
38
+ inkscape:window-x="-11"
39
+ inkscape:window-y="-11"
40
+ inkscape:window-maximized="1"
41
+ inkscape:current-layer="svg15"
42
+ inkscape:pagecheckerboard="0"
43
+ inkscape:showpageshadow="2"
44
+ inkscape:deskcolor="#d1d1d1" /><defs
45
+ id="defs5"><filter
46
+ id="a"
47
+ x="-0.14179865"
48
+ y="-0.14627031"
49
+ width="1.2835973"
50
+ height="1.2925406"
51
+ color-interpolation-filters="sRGB"><feGaussianBlur
52
+ stdDeviation="0.9522046"
53
+ id="feGaussianBlur2" /></filter><radialGradient
54
+ inkscape:collect="always"
55
+ xlink:href="#linearGradient2333"
56
+ id="radialGradient2335"
57
+ cx="43.033897"
58
+ cy="18.491524"
59
+ fx="43.033897"
60
+ fy="18.491524"
61
+ r="4.5"
62
+ gradientUnits="userSpaceOnUse"
63
+ gradientTransform="matrix(1.1489362,0,0,1.1489362,-34.583484,-6.2877748)" /><linearGradient
64
+ inkscape:collect="always"
65
+ id="linearGradient2333"><stop
66
+ style="stop-color:#ffffff;stop-opacity:1"
67
+ offset="0"
68
+ id="stop2329" /><stop
69
+ style="stop-color:#7f7f7f;stop-opacity:1"
70
+ offset="1"
71
+ id="stop2331" /></linearGradient></defs><rect
72
+ style="fill:#7f7f7f;fill-opacity:1;stroke:#f7941e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
73
+ id="rect4529"
74
+ width="27.953087"
75
+ height="28.779661"
76
+ x="2.1016948"
77
+ y="1.6610169" /><path
78
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f8ff00;stroke-width:1.88976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
79
+ d="M 7.4406777,29.936441 V 2.1694915"
80
+ id="path1578"
81
+ sodipodi:nodetypes="cc" /><path
82
+ sodipodi:type="star"
83
+ style="fill:#ff0000;fill-opacity:1;stroke-width:1.00149"
84
+ id="path1511"
85
+ inkscape:flatsided="false"
86
+ sodipodi:sides="6"
87
+ sodipodi:cx="12.751892"
88
+ sodipodi:cy="11.409587"
89
+ sodipodi:r1="1.3253847"
90
+ sodipodi:r2="3.3134618"
91
+ sodipodi:arg1="-1.3089969"
92
+ sodipodi:arg2="-0.78539816"
93
+ inkscape:rounded="-0.04"
94
+ inkscape:randomized="0"
95
+ d="m 13.094927,10.129364 c -0.0875,-0.02345 2.063994,-0.998691 1.999936,-1.0627484 -0.06406,-0.064057 -1.039301,2.0874404 -1.062748,1.9999364 -0.02345,-0.0875 1.896889,1.288126 1.920335,1.200622 0.02345,-0.0875 -2.327427,0.143659 -2.263369,0.0796 0.06406,-0.06406 -0.167106,2.286817 -0.0796,2.26337 0.0875,-0.02345 -1.288126,-1.943781 -1.200622,-1.920335 0.0875,0.02345 -2.063994,0.998691 -1.999936,1.062748 0.06406,0.06406 1.039301,-2.08744 1.062748,-1.999936 0.02345,0.0875 -1.8968886,-1.288126 -1.9203352,-1.200622 -0.023447,0.0875 2.3274272,-0.143659 2.2633702,-0.0796 -0.06406,0.06406 0.167105,-2.286816 0.0796,-2.2633694 -0.0875,0.023447 1.288126,1.9437814 1.200622,1.9203354 z"
96
+ transform="matrix(1.4977674,0,0,1.4977674,-11.665811,-7.4837425)" /><text
97
+ xml:space="preserve"
98
+ style="font-style:italic;font-size:11.574px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Italic';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#f8ff00;fill-opacity:1;stroke:#f8ff00;stroke-width:1.5;stroke-opacity:1"
99
+ x="19.583059"
100
+ y="13.545282"
101
+ id="text2380"><tspan
102
+ sodipodi:role="line"
103
+ id="tspan2378"
104
+ x="19.583059"
105
+ y="13.545282"
106
+ style="fill:#f8ff00;fill-opacity:1;stroke:none;stroke-width:1.5">hkℓ</tspan></text><g
107
+ id="g8933"
108
+ transform="matrix(0.76295898,-0.26381474,0.26381474,0.76295898,-0.92880453,13.406139)"
109
+ style="stroke-width:1.23872"><circle
110
+ style="fill:#f7941e;fill-opacity:1;stroke:#000000;stroke-width:1.23872;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
111
+ id="circle985"
112
+ cx="16.203388"
113
+ cy="16.067795"
114
+ r="7.3220344" /><circle
115
+ style="fill:url(#radialGradient2335);fill-opacity:1;stroke:#000000;stroke-width:1.23872;stroke-opacity:1"
116
+ id="path939"
117
+ cx="16.203388"
118
+ cy="16.067795"
119
+ r="4.5957446" /><rect
120
+ style="fill:#f7941e;fill-opacity:1;stroke:#000000;stroke-width:1.23872;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
121
+ id="rect3347"
122
+ width="8.5853729"
123
+ height="2.8617909"
124
+ x="30.415468"
125
+ y="-1.5267752"
126
+ transform="rotate(45)" /></g></svg>
Binary file
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ viewBox="0 0 32 32"
5
+ xml:space="preserve"
6
+ id="svg15"
7
+ sodipodi:docname="search.svg"
8
+ inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
9
+ inkscape:export-filename="search-reflection.png"
10
+ inkscape:export-xdpi="96"
11
+ inkscape:export-ydpi="96"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns:xlink="http://www.w3.org/1999/xlink"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
20
+ id="metadata19"><rdf:RDF><cc:Work
21
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
22
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1"
26
+ objecttolerance="10"
27
+ gridtolerance="10"
28
+ guidetolerance="10"
29
+ inkscape:pageopacity="0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:window-width="3840"
32
+ inkscape:window-height="2066"
33
+ id="namedview17"
34
+ showgrid="false"
35
+ inkscape:zoom="14.75"
36
+ inkscape:cx="38.033898"
37
+ inkscape:cy="11.932203"
38
+ inkscape:window-x="-11"
39
+ inkscape:window-y="-11"
40
+ inkscape:window-maximized="1"
41
+ inkscape:current-layer="svg15"
42
+ inkscape:pagecheckerboard="0"
43
+ inkscape:showpageshadow="2"
44
+ inkscape:deskcolor="#d1d1d1" /><defs
45
+ id="defs5"><filter
46
+ id="a"
47
+ x="-0.14179865"
48
+ y="-0.14627031"
49
+ width="1.2835973"
50
+ height="1.2925406"
51
+ color-interpolation-filters="sRGB"><feGaussianBlur
52
+ stdDeviation="0.9522046"
53
+ id="feGaussianBlur2" /></filter><radialGradient
54
+ inkscape:collect="always"
55
+ xlink:href="#linearGradient2333"
56
+ id="radialGradient2335"
57
+ cx="43.033897"
58
+ cy="18.491524"
59
+ fx="43.033897"
60
+ fy="18.491524"
61
+ r="4.5"
62
+ gradientUnits="userSpaceOnUse"
63
+ gradientTransform="matrix(1.1489362,0,0,1.1489362,-34.583484,-6.2877748)" /><linearGradient
64
+ inkscape:collect="always"
65
+ id="linearGradient2333"><stop
66
+ style="stop-color:#ffffff;stop-opacity:1"
67
+ offset="0"
68
+ id="stop2329" /><stop
69
+ style="stop-color:#7f7f7f;stop-opacity:1"
70
+ offset="1"
71
+ id="stop2331" /></linearGradient></defs><g
72
+ id="g8933"
73
+ transform="matrix(1.3420181,0.03634228,-0.03637139,1.3409443,-8.3571636,-9.6688694)"
74
+ style="stroke-width:0.745169"><circle
75
+ style="fill:#f7941e;fill-opacity:1;stroke:#000000;stroke-width:0.745169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
76
+ id="circle985"
77
+ cx="16.203388"
78
+ cy="16.067795"
79
+ r="7.3220344" /><circle
80
+ style="fill:url(#radialGradient2335);fill-opacity:1;stroke:#000000;stroke-width:0.745169;stroke-opacity:1"
81
+ id="path939"
82
+ cx="16.203388"
83
+ cy="16.067795"
84
+ r="4.5957446" /><rect
85
+ style="fill:#f7941e;fill-opacity:1;stroke:#000000;stroke-width:0.745169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
86
+ id="rect3347"
87
+ width="8.5853729"
88
+ height="2.8617909"
89
+ x="30.415468"
90
+ y="-1.5267752"
91
+ transform="rotate(45)" /></g></svg>
Binary file
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ viewBox="0 0 32 32"
5
+ xml:space="preserve"
6
+ id="svg15"
7
+ sodipodi:docname="select-image.svg"
8
+ inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
9
+ inkscape:export-filename="C:\Users\Timo\Documents\Archiv\Studium\repro\orgui\orgui\resources\icons\select-image.png"
10
+ inkscape:export-xdpi="96"
11
+ inkscape:export-ydpi="96"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
19
+ id="metadata19"><rdf:RDF><cc:Work
20
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1"
25
+ objecttolerance="10"
26
+ gridtolerance="10"
27
+ guidetolerance="10"
28
+ inkscape:pageopacity="0"
29
+ inkscape:pageshadow="2"
30
+ inkscape:window-width="3840"
31
+ inkscape:window-height="2066"
32
+ id="namedview17"
33
+ showgrid="false"
34
+ inkscape:zoom="2.6074563"
35
+ inkscape:cx="-281.50041"
36
+ inkscape:cy="192.14129"
37
+ inkscape:window-x="-11"
38
+ inkscape:window-y="-11"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="svg15"
41
+ inkscape:pagecheckerboard="0" /><defs
42
+ id="defs5"><filter
43
+ id="a"
44
+ x="-0.14179865"
45
+ y="-0.14627031"
46
+ width="1.2835973"
47
+ height="1.2925406"
48
+ color-interpolation-filters="sRGB"><feGaussianBlur
49
+ stdDeviation="0.9522046"
50
+ id="feGaussianBlur2" /></filter></defs><rect
51
+ style="fill:#7f7f7f;fill-opacity:1;stroke:#f7941e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
52
+ id="rect4529"
53
+ width="20.372881"
54
+ height="20.983051"
55
+ x="4.9491525"
56
+ y="4.6440678" /><path
57
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
58
+ d="M 27.779399,17.983725 11.727,15.160718 l 9.968455,12.273692 2.495819,-3.877202 3.474811,2.945658 0.907098,-1.593352 -3.460341,-2.812606 z"
59
+ id="path9093"
60
+ sodipodi:nodetypes="cccccccc" /></svg>
Binary file
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ viewBox="0 0 32 32"
5
+ xml:space="preserve"
6
+ id="svg15"
7
+ sodipodi:docname="set-reflection.svg"
8
+ inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
9
+ inkscape:export-filename="set-reflection.png"
10
+ inkscape:export-xdpi="96"
11
+ inkscape:export-ydpi="96"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
19
+ id="metadata19"><rdf:RDF><cc:Work
20
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1"
25
+ objecttolerance="10"
26
+ gridtolerance="10"
27
+ guidetolerance="10"
28
+ inkscape:pageopacity="0"
29
+ inkscape:pageshadow="2"
30
+ inkscape:window-width="3840"
31
+ inkscape:window-height="2066"
32
+ id="namedview17"
33
+ showgrid="false"
34
+ inkscape:zoom="14.75"
35
+ inkscape:cx="38"
36
+ inkscape:cy="11.864407"
37
+ inkscape:window-x="-11"
38
+ inkscape:window-y="-11"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="svg15"
41
+ inkscape:pagecheckerboard="0"
42
+ inkscape:showpageshadow="2"
43
+ inkscape:deskcolor="#d1d1d1" /><defs
44
+ id="defs5"><filter
45
+ id="a"
46
+ x="-0.14179865"
47
+ y="-0.14627031"
48
+ width="1.2835973"
49
+ height="1.2925406"
50
+ color-interpolation-filters="sRGB"><feGaussianBlur
51
+ stdDeviation="0.9522046"
52
+ id="feGaussianBlur2" /></filter></defs><rect
53
+ style="fill:#7f7f7f;fill-opacity:1;stroke:#f7941e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
54
+ id="rect4529"
55
+ width="27.953087"
56
+ height="28.779661"
57
+ x="2.1016948"
58
+ y="1.6610169" /><path
59
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f8ff00;stroke-width:1.88976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
60
+ d="M 7.4406777,29.936441 V 2.1694915"
61
+ id="path1578"
62
+ sodipodi:nodetypes="cc" /><path
63
+ sodipodi:type="star"
64
+ style="fill:#ff0000;fill-opacity:1;stroke-width:1.00149"
65
+ id="path1511"
66
+ inkscape:flatsided="false"
67
+ sodipodi:sides="6"
68
+ sodipodi:cx="12.751892"
69
+ sodipodi:cy="11.409587"
70
+ sodipodi:r1="1.3253847"
71
+ sodipodi:r2="3.3134618"
72
+ sodipodi:arg1="-1.3089969"
73
+ sodipodi:arg2="-0.78539816"
74
+ inkscape:rounded="-0.04"
75
+ inkscape:randomized="0"
76
+ d="m 13.094927,10.129364 c -0.0875,-0.02345 2.063994,-0.998691 1.999936,-1.0627484 -0.06406,-0.064057 -1.039301,2.0874404 -1.062748,1.9999364 -0.02345,-0.0875 1.896889,1.288126 1.920335,1.200622 0.02345,-0.0875 -2.327427,0.143659 -2.263369,0.0796 0.06406,-0.06406 -0.167106,2.286817 -0.0796,2.26337 0.0875,-0.02345 -1.288126,-1.943781 -1.200622,-1.920335 0.0875,0.02345 -2.063994,0.998691 -1.999936,1.062748 0.06406,0.06406 1.039301,-2.08744 1.062748,-1.999936 0.02345,0.0875 -1.8968886,-1.288126 -1.9203352,-1.200622 -0.023447,0.0875 2.3274272,-0.143659 2.2633702,-0.0796 -0.06406,0.06406 0.167105,-2.286816 0.0796,-2.2633694 -0.0875,0.023447 1.288126,1.9437814 1.200622,1.9203354 z"
77
+ transform="matrix(1.4977674,0,0,1.4977674,-11.665811,-7.4837425)" /><text
78
+ xml:space="preserve"
79
+ style="font-style:italic;font-size:11.574px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Italic';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#f8ff00;fill-opacity:1;stroke:#f8ff00;stroke-width:1.5;stroke-opacity:1"
80
+ x="19.583059"
81
+ y="13.545282"
82
+ id="text2380"><tspan
83
+ sodipodi:role="line"
84
+ id="tspan2378"
85
+ x="19.583059"
86
+ y="13.545282"
87
+ style="fill:#f8ff00;fill-opacity:1;stroke:none;stroke-width:1.5">hkℓ</tspan></text><path
88
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
89
+ d="m 26.635363,18.656838 -16.052399,-2.823007 9.968455,12.273692 2.495819,-3.877202 3.474811,2.945658 0.907098,-1.593352 -3.460341,-2.812606 z"
90
+ id="path9093"
91
+ sodipodi:nodetypes="cccccccc" /></svg>
Binary file