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
orgui/main.py ADDED
@@ -0,0 +1,101 @@
1
+ # -*- coding: utf-8 -*-
2
+ # /*##########################################################################
3
+ #
4
+ # Copyright (c) 2020-2024 Timo Fuchs
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ # of this software and associated documentation files (the "Software"), to deal
8
+ # in the Software without restriction, including without limitation the rights
9
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ # copies of the Software, and to permit persons to whom the Software is
11
+ # furnished to do so, subject to the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be included in
14
+ # all copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ # THE SOFTWARE.
23
+ #
24
+ # ###########################################################################*/
25
+ """Module descripiton
26
+
27
+ """
28
+ __author__ = "Timo Fuchs"
29
+ __copyright__ = "Copyright 2020-2024 Timo Fuchs"
30
+ __credits__ = []
31
+ __license__ = "MIT License"
32
+ __version__ = "1.0.1"
33
+ __maintainer__ = "Timo Fuchs"
34
+ __email__ = "fuchs@physik.uni-kiel.de"
35
+
36
+ import os
37
+ import sys
38
+ import datetime
39
+ from argparse import ArgumentParser
40
+
41
+ description = """Load th scans of HESXRD reciprocal space mappings from
42
+ single crystal surfaces. Allows maximum image calculation and setting of
43
+ an orientation matrix for that scan. The angles for a reciprocal space
44
+ coordinate can be subsequently calculated.
45
+ """
46
+
47
+ epilog = """The reflection list allows calculation of binned reciprocal
48
+ space using the HESXRD backends of binoculars."""
49
+
50
+ usage = "orGUI [options] configfile"
51
+
52
+ defaultconfigfile = os.path.expanduser("~/orgui")
53
+
54
+ def main():
55
+ parser = ArgumentParser(usage=usage, description=description, epilog=epilog)
56
+ parser.add_argument("configfile", metavar="FILE",
57
+ help="configuration file, will use ~/orgui otherwise",
58
+ nargs='?',default=defaultconfigfile)
59
+ parser.add_argument("--opengl", "--gl", dest="opengl",
60
+ action="store_true",
61
+ default=False,
62
+ help="Enable OpenGL rendering (else matplotlib is used)")
63
+
64
+ options = parser.parse_args()
65
+
66
+ import silx
67
+ from silx.gui import qt
68
+
69
+ if options.opengl:
70
+ silx.config.DEFAULT_PLOT_BACKEND = "opengl"
71
+
72
+ if os.path.isfile(options.configfile) or options.configfile == defaultconfigfile:
73
+ app = qt.QApplication(sys.argv)
74
+ app.setApplicationName("orGUI")
75
+ from .resources import getSplashScreen
76
+ pixmap = getSplashScreen()
77
+
78
+ desktopWidget = app.desktop()
79
+ screenGeometry = desktopWidget.screenGeometry()
80
+ splashpm = pixmap.scaledToHeight(int(screenGeometry.height()/3), qt.Qt.SmoothTransformation)
81
+ splash = qt.QSplashScreen(splashpm)
82
+ splash.show()
83
+ splash.showMessage("jit compile libraries", qt.Qt.AlignVCenter | qt.Qt.AlignRight)
84
+ from .datautils.xrayutils import CTRcalc, CTRplotutil
85
+ splash.showMessage("load orGUI", qt.Qt.AlignVCenter | qt.Qt.AlignRight)
86
+ from orgui.app.orGUI import orGUI, UncaughtHook
87
+ qt_exception_hook = UncaughtHook()
88
+ mainWindow = orGUI(options.configfile)
89
+ qt_exception_hook.set_orgui(mainWindow)
90
+ splash.finish(mainWindow)
91
+
92
+ mainWindow.show()
93
+ current_screen = mainWindow.window().windowHandle().screen()
94
+ qr = mainWindow.frameGeometry()
95
+ qr.moveCenter(current_screen.geometry().center())
96
+ mainWindow.move(qr.topLeft())
97
+
98
+ return app.exec()
99
+ else:
100
+ raise Exception("%s is no file" % options.configfile)
101
+
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # /*##########################################################################
3
+ #
4
+ # Copyright (c) 2020-2024 Timo Fuchs
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ # of this software and associated documentation files (the "Software"), to deal
8
+ # in the Software without restriction, including without limitation the rights
9
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ # copies of the Software, and to permit persons to whom the Software is
11
+ # furnished to do so, subject to the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be included in
14
+ # all copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ # THE SOFTWARE.
23
+ #
24
+ # ###########################################################################*/
25
+ import os
26
+ import glob
27
+
28
+ from silx.gui import qt
29
+
30
+ _iconpath = os.path.join(os.path.dirname(__file__), "icons")
31
+
32
+ def getQicon(name: str):
33
+
34
+ return qt.QIcon(os.path.join(_iconpath, name))
35
+
36
+ def getSplashScreen():
37
+ return qt.QPixmap(os.path.join(_iconpath, "logo"))
38
+
39
+ def getDiffractometerPath():
40
+ return os.path.join(_iconpath, "diffractometer_v3.png")
Binary file
@@ -0,0 +1,67 @@
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:xlink="http://www.w3.org/1999/xlink"
9
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ id="svg16"
12
+ enable-background="new 0 0 32 32"
13
+ version="1.1"
14
+ viewBox="0 0 32 32"
15
+ xml:space="preserve"
16
+ sodipodi:docname="alpha.svg"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ inkscape:export-filename="I:\icons\max_2.png"
19
+ inkscape:export-xdpi="96"
20
+ inkscape:export-ydpi="96"><defs
21
+ id="defs10"><linearGradient
22
+ inkscape:collect="always"
23
+ id="linearGradient825"><stop
24
+ style="stop-color:#000000;stop-opacity:1;"
25
+ offset="0"
26
+ id="stop821" /><stop
27
+ style="stop-color:#000000;stop-opacity:0;"
28
+ offset="1"
29
+ id="stop823" /></linearGradient><linearGradient
30
+ inkscape:collect="always"
31
+ xlink:href="#linearGradient825"
32
+ id="linearGradient827"
33
+ x1="3.9111714"
34
+ y1="15.74853"
35
+ x2="23.893707"
36
+ y2="15.74853"
37
+ gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
38
+ pagecolor="#ffffff"
39
+ bordercolor="#666666"
40
+ borderopacity="1"
41
+ objecttolerance="10"
42
+ gridtolerance="10"
43
+ guidetolerance="10"
44
+ inkscape:pageopacity="0"
45
+ inkscape:pageshadow="2"
46
+ inkscape:window-width="3840"
47
+ inkscape:window-height="2066"
48
+ id="namedview8"
49
+ showgrid="false"
50
+ inkscape:zoom="10.429825"
51
+ inkscape:cx="-2.5419877"
52
+ inkscape:cy="-11.988123"
53
+ inkscape:window-x="-11"
54
+ inkscape:window-y="-11"
55
+ inkscape:window-maximized="1"
56
+ inkscape:current-layer="svg16"
57
+ inkscape:snap-global="false" /><metadata
58
+ id="metadata22"><rdf:RDF><cc:Work
59
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
60
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata>
61
+ <rect
62
+ style="fill:url(#linearGradient827);fill-opacity:1;stroke:#000000;stroke-width:0.76843834;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
63
+ id="rect819"
64
+ width="23.720406"
65
+ height="23.720406"
66
+ x="4.2953906"
67
+ y="3.8883274" /></svg>
Binary file
@@ -0,0 +1,68 @@
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
+ version="1.1"
11
+ viewBox="0 0 32 32"
12
+ xml:space="preserve"
13
+ id="svg15"
14
+ sodipodi:docname="disable-image.svg"
15
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
16
+ inkscape:export-filename="C:\Users\Timo\Documents\Archiv\Studium\repro\orgui\orgui\resources\icons\disable-image.png"
17
+ inkscape:export-xdpi="96"
18
+ inkscape:export-ydpi="96"><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" /><dc:title></dc:title></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="-6.3512836"
36
+ inkscape:cy="-4.8653757"
37
+ inkscape:window-x="-11"
38
+ inkscape:window-y="-11"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="svg15" /><defs
41
+ id="defs5"><filter
42
+ id="a"
43
+ x="-.1418"
44
+ y="-.14627"
45
+ width="1.2836"
46
+ height="1.2925"
47
+ color-interpolation-filters="sRGB"><feGaussianBlur
48
+ stdDeviation="0.9522046"
49
+ id="feGaussianBlur2" /></filter></defs><rect
50
+ 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"
51
+ id="rect4529"
52
+ width="20.372881"
53
+ height="20.983051"
54
+ x="4.9491525"
55
+ y="4.6440678" /><g
56
+ transform="matrix(1.2430411,0,0,1.244417,1.104871,1.4601658)"
57
+ id="g13"
58
+ style="stroke-width:0.80403376"><path
59
+ transform="matrix(0.68044,0,0,0.68044,2.0969,3.5975)"
60
+ d="m 26.957,11.637 c -0.39375,0.002 -0.79775,0.17675 -1.0938,0.46875 l -5.375,5.25 -5.4375,-5.2188 c -0.602,-0.58 -1.5592,-0.583 -2.1562,0 -0.598,0.584 -0.602,1.547 0,2.125 l 5.4375,5.2187 -5.375,5.25 c -0.599,0.583 -0.605,1.5168 0,2.0938 0.601,0.577 1.5905,0.586 2.1875,0 l 5.375,-5.25 5.4375,5.1875 c 0.605,0.578 1.5582,0.584 2.1562,0 0.596,-0.58 0.598,-1.5148 0,-2.0938 l -5.4375,-5.2188 5.375,-5.25 c 0.594,-0.584 0.602,-1.548 0,-2.125 -0.301,-0.29 -0.7,-0.4395 -1.0938,-0.4375 z"
61
+ id="path9"
62
+ inkscape:connector-curvature="0"
63
+ style="stroke-width:0.80403376;filter:url(#a)" /><path
64
+ d="m 20.137,10.881 c -0.26792,0.0014 -0.54282,0.099 -0.74423,0.29769 l -3.6574,3.5723 -3.6999,-3.5298 c -0.40962,-0.39466 -1.061,-0.3967 -1.4672,0 -0.4069,0.39738 -0.40962,1.0314 0,1.4247 l 3.6999,3.551 -3.6574,3.5723 c -0.40758,0.3967 -0.41167,1.0533 0,1.4459 0.40894,0.39261 1.0822,0.37747 1.4885,-0.02126 l 3.6574,-3.5723 3.6999,3.551 c 0.41166,0.39329 1.0603,0.39738 1.4672,0 0.40554,-0.39465 0.4069,-1.052 0,-1.4459 l -3.6999,-3.551 3.6574,-3.5723 c 0.40418,-0.39738 0.40962,-1.0321 0,-1.4247 -0.20481,-0.19733 -0.47631,-0.29905 -0.74423,-0.29769 z"
65
+ stroke-miterlimit="10"
66
+ id="path11"
67
+ inkscape:connector-curvature="0"
68
+ style="fill:#ff0000;stroke:#ff4042;stroke-width:0.16412741;stroke-miterlimit:10" /></g></svg>
@@ -0,0 +1,152 @@
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
+ version="1.1"
11
+ viewBox="0 0 32 32"
12
+ xml:space="preserve"
13
+ id="svg53"
14
+ sodipodi:docname="document-nx-open.svg"
15
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
16
+ inkscape:export-filename="C:\Users\Timo\Documents\Archiv\Studium\repro\orgui\orgui\resources\icons\document-nx-open.png"
17
+ inkscape:export-xdpi="96"
18
+ inkscape:export-ydpi="96"><metadata
19
+ id="metadata57"><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" /><dc:title></dc:title></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="1833"
31
+ inkscape:window-height="1433"
32
+ id="namedview55"
33
+ showgrid="false"
34
+ inkscape:zoom="7.375"
35
+ inkscape:cx="16"
36
+ inkscape:cy="16"
37
+ inkscape:window-x="0"
38
+ inkscape:window-y="0"
39
+ inkscape:window-maximized="0"
40
+ inkscape:current-layer="svg53" /><defs
41
+ id="defs5"><filter
42
+ id="c"
43
+ x="-.32558"
44
+ y="-.40255"
45
+ width="1.6512"
46
+ height="1.8051"
47
+ color-interpolation-filters="sRGB"><feGaussianBlur
48
+ stdDeviation="3.0979788"
49
+ id="feGaussianBlur2" /></filter></defs><path
50
+ d="m 26.494,25.327 c 0.161,0.526 -0.149,1.033 -0.691,1.128 l -16.584,2.9 C 8.677,29.45 8.102,29.097 7.94,28.571 L 3.743,14.942 c -0.162,-0.525 0.149,-1.033 0.69,-1.128 l 16.583,-2.898 c 0.542,-0.095 1.118,0.258 1.279,0.783 z"
51
+ id="path7"
52
+ inkscape:connector-curvature="0"
53
+ transform="matrix(0.75077049,0,0,0.74381818,0.01150841,1.6805688)"
54
+ style="opacity:0.5;stroke-width:1.3381753;filter:url(#c)" /><path
55
+ d="M 13.872233,24.824471"
56
+ stroke-miterlimit="10"
57
+ id="path9"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke:#ffffff;stroke-width:0.50999999;stroke-miterlimit:10" /><linearGradient
60
+ id="d"
61
+ x1="7.8379"
62
+ x2="18.125"
63
+ y1="15.27"
64
+ y2="23.115"
65
+ gradientUnits="userSpaceOnUse"><stop
66
+ stop-color="#dedfe3"
67
+ offset="0"
68
+ id="stop11" /><stop
69
+ stop-color="#97989c"
70
+ offset=".3104"
71
+ id="stop13" /><stop
72
+ stop-color="#626365"
73
+ offset=".558"
74
+ id="stop15" /><stop
75
+ stop-color="#343435"
76
+ offset=".7327"
77
+ id="stop17" /><stop
78
+ offset=".8188"
79
+ id="stop19" /></linearGradient><path
80
+ d="m 18.772512,20.176352 c 0.120874,0.391248 -0.111865,0.768364 -0.518782,0.839027 L 5.802952,23.172451 C 5.3960344,23.243114 4.9643413,22.980546 4.8427165,22.589298 L 1.6917328,12.4518 C 1.5701079,12.061295 1.8035976,11.683436 2.2097644,11.612773 L 14.659791,9.4571879 c 0.406918,-0.070663 0.839362,0.1919051 0.960236,0.5824101 z"
81
+ id="path22"
82
+ inkscape:connector-curvature="0"
83
+ style="fill:url(#d);stroke-width:1" /><path
84
+ d="m 18.772512,20.176352 c 0.120874,0.391248 -0.111865,0.768364 -0.518782,0.839027 L 5.802952,23.172451 C 5.3960344,23.243114 4.9643413,22.980546 4.8427165,22.589298 L 1.6917328,12.4518 C 1.5701079,12.061295 1.8035976,11.683436 2.2097644,11.612773 L 14.659791,9.4571879 c 0.406918,-0.070663 0.839362,0.1919051 0.960236,0.5824101 z"
85
+ stroke-miterlimit="10"
86
+ id="path24"
87
+ inkscape:connector-curvature="0"
88
+ style="fill:none;stroke:#414042;stroke-width:0.10000001;stroke-miterlimit:10" /><linearGradient
89
+ id="e"
90
+ x1="7.0898"
91
+ x2="29.94"
92
+ y1="20.499"
93
+ y2="20.499"
94
+ gradientUnits="userSpaceOnUse"><stop
95
+ stop-color="#f1f2f2"
96
+ offset="0"
97
+ id="stop26" /><stop
98
+ stop-color="#f2e7db"
99
+ offset=".0395"
100
+ id="stop28" /><stop
101
+ stop-color="#f4d3ae"
102
+ offset=".1471"
103
+ id="stop30" /><stop
104
+ stop-color="#f5c188"
105
+ offset=".2586"
106
+ id="stop32" /><stop
107
+ stop-color="#f5b36a"
108
+ offset=".3718"
109
+ id="stop34" /><stop
110
+ stop-color="#f6a74f"
111
+ offset=".4871"
112
+ id="stop36" /><stop
113
+ stop-color="#f79e39"
114
+ offset=".6051"
115
+ id="stop38" /><stop
116
+ stop-color="#f79829"
117
+ offset=".727"
118
+ id="stop40" /><stop
119
+ stop-color="#f79520"
120
+ offset=".8552"
121
+ id="stop42" /><stop
122
+ stop-color="#f7941e"
123
+ offset="1"
124
+ id="stop44" /></linearGradient><path
125
+ d="m 19.09234,20.197922 c -0.143397,0.383811 -0.593859,0.75572 -1.000026,0.827126 L 5.8570074,23.170964 C 5.4500898,23.243114 5.2353695,22.987241 5.3787666,22.60343 l 3.3506887,-8.942182 c 0.1433972,-0.38381 0.5938595,-0.755719 1.0007771,-0.827126 L 21.967041,10.685976 c 0.406166,-0.07141 0.621638,0.184466 0.47824,0.567533 z"
126
+ id="path47"
127
+ inkscape:connector-curvature="0"
128
+ style="fill:url(#e);stroke-width:1" /><path
129
+ d="m 19.09234,20.197922 c -0.143397,0.383811 -0.593859,0.75572 -1.000026,0.827126 L 5.8570074,23.170964 C 5.4500898,23.243114 5.2353695,22.987241 5.3787666,22.60343 l 3.3506887,-8.942182 c 0.1433972,-0.38381 0.5938595,-0.755719 1.0007771,-0.827126 L 21.967041,10.685976 c 0.406166,-0.07141 0.621638,0.184466 0.47824,0.567533 z"
130
+ stroke-miterlimit="10"
131
+ id="path49"
132
+ inkscape:connector-curvature="0"
133
+ style="fill:none;stroke:#f7941e;stroke-width:0.10000001;stroke-miterlimit:10" /><path
134
+ d="M 19.594606,6.3368706 C 17.197396,2.4638093 13.270115,4.1500452 13.270115,4.1500452 L 7.39909,6.7645661 c 0,0 7.934893,-3.5502442 11.106899,0.1926489 -1.069098,0.6567914 -1.882933,1.2815987 -1.882933,1.2815987 l 3.465557,0.7750585 0.142646,-0.017852 C 20.210988,8.830893 21.801871,5.5045381 21.801871,5.5045381 21.133685,5.6109041 20.34913,5.9419032 19.594606,6.3368706 Z"
135
+ stroke-miterlimit="10"
136
+ id="path51"
137
+ inkscape:connector-curvature="0"
138
+ style="fill:#00a651;stroke:#000000;stroke-width:0.10000001;stroke-miterlimit:10" /><text
139
+ xml:space="preserve"
140
+ style="font-size:14.3210001px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000"
141
+ word-spacing="0px"
142
+ letter-spacing="0px"
143
+ font-size="14.321px"
144
+ y="29.526297"
145
+ x="10.076466"
146
+ id="text3032"><tspan
147
+ font-weight="bold"
148
+ y="29.526297"
149
+ x="10.076466"
150
+ id="tspan3034"
151
+ style="font-weight:bold">nx</tspan></text>
152
+ </svg>
@@ -0,0 +1,73 @@
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
+ version="1.1"
11
+ viewBox="0 0 32 32"
12
+ xml:space="preserve"
13
+ id="svg10"
14
+ sodipodi:docname="document-nx-save.svg"
15
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
16
+ inkscape:export-filename="C:\Users\Timo\Documents\Archiv\Studium\repro\orgui\orgui\resources\icons\document-nx-save.png"
17
+ inkscape:export-xdpi="96"
18
+ inkscape:export-ydpi="96"><metadata
19
+ id="metadata16"><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" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
22
+ id="defs14" /><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="1592"
32
+ inkscape:window-height="1132"
33
+ id="namedview12"
34
+ showgrid="false"
35
+ inkscape:zoom="7.375"
36
+ inkscape:cx="16"
37
+ inkscape:cy="16"
38
+ inkscape:window-x="1741"
39
+ inkscape:window-y="498"
40
+ inkscape:window-maximized="0"
41
+ inkscape:current-layer="svg10" /><path
42
+ d="m 18.463164,18.504866 c 0,0.198213 -0.162174,0.360388 -0.360387,0.360388 H 2.9549307 c -0.1982136,0 -0.3603883,-0.162175 -0.3603883,-0.360388 V 3.3591832 c 0,-0.1982136 0.1621747,-0.3603883 0.3603883,-0.3603883 H 14.682691 c 0.198213,0 0.472829,0.1167658 0.610497,0.2594796 l 2.919867,3.0279833 c 0.136947,0.1427137 0.250109,0.4216544 0.250109,0.6198682 z"
43
+ id="path2"
44
+ inkscape:connector-curvature="0"
45
+ style="stroke-width:1" /><path
46
+ d="m 16.813306,16.436236 c 0,0.118928 -0.0973,0.216233 -0.216233,0.216233 H 4.7013729 c -0.1189281,0 -0.2162329,-0.09731 -0.2162329,-0.216233 v -5.056249 c 0,-0.118928 0.097305,-0.216233 0.2162329,-0.216233 H 16.597073 c 0.118929,0 0.216233,0.09731 0.216233,0.216233 z"
47
+ id="path4"
48
+ inkscape:connector-curvature="0"
49
+ style="fill:#ffffff;stroke-width:1" /><path
50
+ d="m 13.75433,6.8801783 c 0,0.1189274 -0.0973,0.2162328 -0.216233,0.2162328 H 4.7013729 C 4.5824448,7.0964111 4.48514,6.9991061 4.48514,6.8801783 V 2.9807754 c 0,-0.1189282 0.097305,-0.216233 0.2162329,-0.216233 h 8.8367241 c 0.118929,0 0.216233,0.097305 0.216233,0.216233 z"
51
+ id="path6"
52
+ inkscape:connector-curvature="0"
53
+ style="fill:#ffffff;stroke-width:1" /><rect
54
+ x="9.7878942"
55
+ y="2.9987948"
56
+ width="1.5395792"
57
+ height="3.0827622"
58
+ id="rect8"
59
+ style="stroke-width:1" /><text
60
+ xml:space="preserve"
61
+ style="font-size:14.3210001px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000"
62
+ word-spacing="0px"
63
+ letter-spacing="0px"
64
+ font-size="14.321px"
65
+ y="29.255114"
66
+ x="10.076468"
67
+ id="text3032"><tspan
68
+ font-weight="bold"
69
+ y="29.255114"
70
+ x="10.076468"
71
+ id="tspan3034"
72
+ style="font-weight:bold">nx</tspan></text>
73
+ </svg>
Binary file